|
|
|
@ -182,7 +182,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
|
<el-table-column label="确认说明" prop="auditComment"></el-table-column>
|
|
|
|
|
<el-table-column label="确认说明" prop="auditComment" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
@ -229,9 +229,8 @@
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog width="65%" :visible.sync="certAuditVisible" append-to-body title="配送企业资质证书确认">
|
|
|
|
|
<el-dialog width="60%" :visible.sync="certAuditVisible" append-to-body title="配送企业资质证书确认">
|
|
|
|
|
<el-form :model="currentAudit">
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text">
|
|
|
|
@ -325,6 +324,7 @@
|
|
|
|
|
<el-select v-model="confirmStatus" style="width: 100%">
|
|
|
|
|
<el-option label="符合" :value="1"></el-option>
|
|
|
|
|
<el-option label="不符合" :value="2"></el-option>
|
|
|
|
|
<el-option label="未确认" :value="6"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -348,7 +348,7 @@
|
|
|
|
|
<el-row style="margin-top: 12px">
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text">
|
|
|
|
|
<span>结果备注:</span>
|
|
|
|
|
<span>结果说明:</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="19">
|
|
|
|
@ -522,6 +522,15 @@ export default {
|
|
|
|
|
3: "变更未确认",
|
|
|
|
|
6: "未确认",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
checkSupFlage: {
|
|
|
|
|
0: "草稿",
|
|
|
|
|
1: "已审核",
|
|
|
|
|
2: "已拒绝",
|
|
|
|
|
3: "变更未审核",
|
|
|
|
|
6: "未审核",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
supStatus: {
|
|
|
|
|
0: "有效",
|
|
|
|
|
1: "失效",
|
|
|
|
@ -564,7 +573,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
onRejectSubmit() {
|
|
|
|
|
this.$prompt('请输入驳回意见', '提示', {
|
|
|
|
|
this.$prompt('请输入结果说明', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
}).then(({value}) => {
|
|
|
|
@ -624,6 +633,7 @@ export default {
|
|
|
|
|
auditCert(row) {
|
|
|
|
|
this.certAuditVisible = true;
|
|
|
|
|
this.currentAudit = row;
|
|
|
|
|
this.confirmStatus = this.currentAudit.auditStatus;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
passAuditCert() {
|
|
|
|
|