123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template>
- <div class="order-content">
- <div class="order-status" v-if="afterSales!=null" >
- <el-steps :active="afterSales.status==4?afterSales.status+1:afterSales.status" align-center>
- <el-step title="待审核(24小时自动审核)"></el-step>
- <el-step title="平台已审核等待用户发货"></el-step>
- <el-step title="用户已发货待仓库审核"></el-step>
- <el-step title="财务审核"></el-step>
- <el-step title="退款成功"></el-step>
- </el-steps>
- </div>
- <div v-if="afterSales!=null">
- <el-card shadow="never" style="margin-top: 15px">
- <div class="operate-container">
- <span style="margin-left: 20px" class="color-danger">售后状态:
- <el-tag prop="status" v-for="(item, index) in salesStatusOptions" v-if="afterSales.salesStatus==item.dictValue">{{item.dictLabel}}</el-tag>
- </span>
- <div class="operate-button-container" >
- <el-button size="mini" v-hasPermi="['store:storeAfterSales:edit']" v-show="afterSales.salesStatus==0&&afterSales.status===1" @click="addDelivery">编辑物流</el-button>
- <el-button size="mini" v-hasPermi="['store:storeAfterSales:audit1']" v-show="afterSales.salesStatus==0&&afterSales.status===0" @click="handleAudit1">平台审核</el-button>
- <el-button size="mini" v-hasPermi="['store:storeAfterSales:audit2']" v-show="afterSales.salesStatus==0&&afterSales.status===2" @click="handleAudit2">仓库审核</el-button>
- <el-button size="mini" v-hasPermi="['store:storeAfterSales:refund']" @click="handleRefund" v-show="afterSales.salesStatus==0&&afterSales.status===3">财务审核</el-button>
- <el-button size="mini" v-hasPermi="['store:storeAfterSales:cancel']" @click="cancel" v-show="afterSales.salesStatus==0">撤销</el-button>
- <el-button size="mini" @click="showOrder">查看订单</el-button>
- </div>
- </div>
- <div style="margin: 20px 0px">
- <span class="font-small">基本信息</span>
- </div>
- <el-descriptions :column="4" border >
- <el-descriptions-item label="订单编号" >
- <span v-if="afterSales!=null">
- {{afterSales.orderCode}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="会员" >
- <span v-if="user!=null">
- {{user.nickname}}({{user.phone}})
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="退款金额" >
- <span v-if="afterSales!=null">
- {{afterSales.refundAmount}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="申请类型" >
- <span v-if="afterSales!=null">
- <el-tag v-for="(item, index) in serviceTypeOptions" v-if="afterSales.serviceType==item.dictValue" >{{item.dictLabel}}</el-tag>
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="申请原因" >
- <span v-if="afterSales!=null">
- {{afterSales.reasons}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="说明" >
- <span v-if="afterSales!=null">
- {{afterSales.explains}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="状态" >
- <span v-if="afterSales!=null">
- <el-tag v-for="(item, index) in statusOptions" v-if="afterSales.status==item.dictValue" >{{item.dictLabel}}</el-tag>
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="售后状态" >
- <span v-if="afterSales!=null">
- <el-tag v-for="(item, index) in salesStatusOptions" v-if="afterSales.salesStatus==item.dictValue" >{{item.dictLabel}}</el-tag>
- </span>
- </el-descriptions-item>
- </el-descriptions>
- <div style="margin: 20px 0px">
- <span class="font-small">收货信息</span>
- </div>
- <el-descriptions :column="4" border >
- <el-descriptions-item label="收货人" >
- <span v-if="afterSales!=null">
- {{afterSales.consignee}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="收货人" >
- <span v-if="afterSales!=null">
- {{afterSales.consignee}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="手机号码" >
- <span v-if="afterSales!=null">
- {{afterSales.phoneNumber}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="收货地址" >
- <span v-if="afterSales!=null">
- {{afterSales.address}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="快递公司" >
- <span v-if="afterSales!=null">
- {{afterSales.deliveryName}}
- </span>
- </el-descriptions-item>
- <el-descriptions-item label="运单号" >
- <span v-if="afterSales!=null">
- {{afterSales.deliverySn}}
- </span>
- </el-descriptions-item>
- </el-descriptions>
- <div style="margin-top: 20px">
- <span class="font-small">商品信息</span>
- </div>
- <el-table
- border
- :data="items"
- size="small"
- style="width: 100%;margin-top: 20px" >
- <el-table-column label="商品图片" width="150" align="center">
- <template slot-scope="scope">
- <img :src="JSON.parse(scope.row.jsonInfo).image" style="height: 80px">
- </template>
- </el-table-column>
- <el-table-column label="商品名称" width="300" align="center">
- <template slot-scope="scope">
- <p>{{JSON.parse(scope.row.jsonInfo).productName}}</p>
- </template>
- </el-table-column>
- <el-table-column label="价格" width="240" align="center">
- <template slot-scope="scope">
- <p>价格:¥{{JSON.parse(scope.row.jsonInfo).price}}</p>
- </template>
- </el-table-column>
- <el-table-column label="属性" width="240" align="center">
- <template slot-scope="scope">
- {{JSON.parse(scope.row.jsonInfo).sku}}
- </template>
- </el-table-column>
- <el-table-column label="数量" width="180" align="center">
- <template slot-scope="scope">
- {{JSON.parse(scope.row.jsonInfo).num}}
- </template>
- </el-table-column>
- <el-table-column label="小计" align="center">
- <template slot-scope="scope">
- ¥{{JSON.parse(scope.row.jsonInfo).num*JSON.parse(scope.row.jsonInfo).price}}
- </template>
- </el-table-column>
- </el-table>
- <div style="margin-top: 20px">
- <svg-icon icon-class="marker" style="color: #606266"></svg-icon>
- <span class="font-small">操作信息</span>
- </div>
- <el-table style="margin-top: 20px;width: 100%"
- ref="orderHistoryTable"
- :data="logs" border>
- <el-table-column label="操作时间" width="160" align="center">
- <template slot-scope="scope">
- {{scope.row.changeTime}}
- </template>
- </el-table-column>
- <el-table-column label="备注" align="center">
- <template slot-scope="scope">
- {{scope.row.changeMessage}}
- </template>
- </el-table-column>
- <el-table-column label="操作员" align="center">
- <template slot-scope="scope">
- {{scope.row.operator}}
- </template>
- </el-table-column>
- </el-table>
- </el-card>
- </div>
- <el-dialog :title="audit.title" :visible.sync="audit.open" width="800px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
- <el-form-item label="退款金额" prop="refundAmount" >
- <el-input-number disabled v-model="form.refundAmount" :min="0" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitAuditForm">确 定</el-button>
- </div>
- </el-dialog>
- <el-drawer
- :append-to-body="true"
- size="75%"
- :title="show.title" :visible.sync="show.open"
- >
- <product-order ref="productOrder" />
- </el-drawer>
- <el-dialog :title="add.title" :visible.sync="add.open" width="500px" append-to-body>
- <div slot="footer" class="dialog-footer">
- <el-form ref="addForm" :model="addForm" :rules="addRules" label-width="100px">
- <el-form-item label="id" prop="id" v-if="false">
- <el-input v-model="addForm.id" placeholder="请输入" />
- </el-form-item>
- <el-form-item label="快递公司" prop="deliveryName">
- <el-input v-model="addForm.deliveryName" placeholder="请输入" />
- </el-form-item>
- <el-form-item label="运单号" prop="deliverySn">
- <el-input v-model="addForm.deliverySn" placeholder="请输入" />
- </el-form-item>
- </el-form>
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel1">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {getStoreAfterSales,cancel,refund,audit1,audit2,updateStoreAfterSales} from "@/api/store/storeAfterSales";
- import productOrder from "./productOrder";
- export default {
- components: { productOrder },
- name: "order",
- data() {
- return {
- show:{
- open:false,
- title:"订单详情"
- },
- audit:{
- title:"财务审核",
- open:false,
- },
- add:{
- open:false,
- title:"添加物流"
- },
- addForm:{
- id:null,
- deliveryName:null,
- deliverySn:null
- },
- addRules:{
- deliveryName: [
- { required: true, message: "物流名称不能为空", trigger: "blur" }
- ],
- deliverySn: [
- { required: true, message: "物流单号不能为空", trigger: "blur" }
- ],
- },
- order:null,
- user:null,
- serviceTypeOptions:[],
- salesStatusOptions:[],
- statusOptions:[],
- afterSales:null,
- items:[],
- logs:[],
- form:{
- refundAmount:0,
- },
- rules:{
- status: [
- { required: true, message: "状态不能为空", trigger: "blur" }
- ],
- refundAmount: [
- { required: true, message: "退款金额不能为空", trigger: "blur" }
- ],
- }
- };
- },
- created() {
- this.getDicts("store_after_sales_sales_status").then((response) => {
- this.salesStatusOptions = response.data;
- });
- this.getDicts("store_after_sales_status").then((response) => {
- this.statusOptions = response.data;
- });
- this.getDicts("store_after_sales_service_type").then((response) => {
- this.serviceTypeOptions = response.data;
- });
- },
- methods: {
- submitForm() {
- var id=this.afterSales.id;
- this.addForm.id = id;
- updateStoreAfterSales(this.addForm).then(response => {
- if (response.code === 200) {
- this.msgSuccess("编辑成功");
- this.add.open = false;
- this.getStoreAfterSales(id);
- }
- });
- },
- cancel1(){
- this.add.open = false;
- },
- addDelivery(){
- this.add.open = true;
- },
- showOrder(){
- this.show.open=true;
- const orderId = this.order.id ;
- setTimeout(() => {
- this.$refs.productOrder.getOrder(orderId);
- }, 500);
- },
- handleAudit1(){
- var id=this.afterSales.id;
- this.$confirm('确定审请通过?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- var data={salesId:id}
- return audit1(data);
- }).then(() => {
- this.getStoreAfterSales(id);
- this.msgSuccess("操作成功");
- }).catch(function() {});
- },
- handleAudit2(){
- var id=this.afterSales.id;
- this.$confirm('确定审请通过?', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- var data={salesId:id}
- return audit2(data);
- }).then(() => {
- this.getStoreAfterSales(id);
- this.msgSuccess("操作成功");
- }).catch(function() {});
- },
- handleRefund(){
- this.audit.open=true;
- this.form.salesId=this.afterSales.id;
- this.form.refundAmount=this.afterSales.refundAmount;
- },
- submitAuditForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- refund(this.form).then(response => {
- if (response.code === 200) {
- this.audit.open = false;
- this.getStoreAfterSales(this.afterSales.id);
- this.msgSuccess("操作成功");
- }
- });
- }
- });
- },
- cancel(){
- var id=this.afterSales.id;
- this.$prompt('是否确定取消订单?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- }).then(({ value }) => {
- var data={salesId:id,remark:value};
- return cancel(data);
- }).then(() => {
- this.getStoreAfterSales(id);
- this.msgSuccess("操作成功");
- }).catch(() => {
- });
- },
- getStoreAfterSales(id){
- getStoreAfterSales(id).then(response => {
- this.afterSales = response.afterSales;
- this.logs = response.logs;
- this.items = response.items;
- this.user=response.user;
- this.order=response.order;
- });
- }
- }
- };
- </script>
- <style scoped>
- .order-content{
- margin: 10px;
- }
- .operate-container {
- background: #F2F6FC;
- height: 60px;
- margin: -20px -20px 0;
- line-height: 60px;
- }
- .operate-button-container {
- float: right;
- margin-right: 20px
- }
- </style>
|