|
|
@@ -248,7 +248,7 @@
|
|
|
@pagination="getList"
|
|
|
/>
|
|
|
|
|
|
- <el-dialog :title="show.title" :visible.sync="show.open" width="500px" append-to-body>
|
|
|
+ <el-dialog :title="auditshow.title" :visible.sync="auditshow.open" width="500px" append-to-body>
|
|
|
<el-form ref="auditForm" :model="auditForm" :rules="auditRules" label-width="80px">
|
|
|
<el-form-item label="拒绝原因" prop="reviewContent">
|
|
|
<el-input
|
|
|
@@ -345,7 +345,7 @@ export default {
|
|
|
loading: false,
|
|
|
storeOrderAuditList: [],
|
|
|
statusOptions: statusOptions,
|
|
|
- show: {
|
|
|
+ auditshow: {
|
|
|
open: false,
|
|
|
title: "审核订单"
|
|
|
},
|
|
|
@@ -467,7 +467,7 @@ export default {
|
|
|
this.currentRowId = row.id
|
|
|
this.auditForm.auditId = row.id;
|
|
|
this.auditForm.reviewType = 0;
|
|
|
- this.show.open = true;
|
|
|
+ this.auditshow.open = true;
|
|
|
},
|
|
|
handlePass(row) {
|
|
|
this.currentRowId = row.id
|
|
|
@@ -486,14 +486,14 @@ export default {
|
|
|
audit(this.auditForm).then(response => {
|
|
|
const {msg} = response
|
|
|
this.msgSuccess(msg);
|
|
|
- this.show.open = false;
|
|
|
+ this.auditshow.open = false;
|
|
|
this.$refs['popover_' + this.currentRowId].doClose();
|
|
|
this.getList();
|
|
|
this.resetAuditForm();
|
|
|
});
|
|
|
},
|
|
|
cancelAudit() {
|
|
|
- this.show.open = false;
|
|
|
+ this.auditshow.open = false;
|
|
|
this.resetAuditForm();
|
|
|
},
|
|
|
resetAuditForm() {
|