diff --git a/src/views/store/shopAudit/shopAuditDetails.vue b/src/views/store/shopAudit/shopAuditDetails.vue
index a728af0..f1d30eb 100644
--- a/src/views/store/shopAudit/shopAuditDetails.vue
+++ b/src/views/store/shopAudit/shopAuditDetails.vue
@@ -470,20 +470,76 @@
审批状态
{{ formatApprovalStatus(form.approval_status) }}
+
+
+
合同状态
+
+ {{ form.has_ec_signed == 1 ? '成功' : '未签署' }}
+
+
+
+
+
+
进件状态
+
+ {{ form.has_apply_mer == 1 ? '成功' : '未进件' }}
+
+
+
+
店铺创建状态
- {{ storeStatus[form.store_status - 1] }}
+ {{ form.store_status == 1 ? '已创建' : '未创建' }}
+
+
+
+
+
+
分账业务申请状态
+
+ {{ form.has_apply_split == 1 ? '已申请' : '未申请' }}
+
+
+
+
+
+
分账业务申请状态
+
+ {{ form.has_apply_split == 1 ? '已申请' : '未申请' }}
+
+
+
+
+
+
分账接收方绑定状态
+
+ {{ form.has_bind_receiver == 1 ? '已绑定' : '未绑定' }}
@@ -638,6 +694,7 @@ import {
import { GetCategoryList } from '@/api/base/store/category'
import city from './cityData.js'
import config from './formConfig'
+import { color } from 'echarts'
export default {
props: {
show: {
@@ -711,26 +768,32 @@ export default {
{
key:1,
value:'已通过',
+ color:'#48c978'
},
{
key:2,
value:'未通过',
+ color:'red'
},
{
key:3,
value:'待审核',
+ color:'#ffba00'
},
{
key:4,
value:'未申请过',
+ color:'#000'
},
{
key:5,
value:'已提交拉卡拉审核',
+ color:'#ffba00'
},
{
key:21,
value:'拉卡拉审核未通过',
+ color:'red'
},
],
licenseType: ['许可证', '特许证件', '其他证件'],
@@ -783,10 +846,6 @@ export default {
}
},
computed: {
- approvalStatusClass() {
- let colorList = ['color:#48c978', 'color:red', 'color:#ffba00']
- return colorList[this.form.approval_status - 1]
- },
signedStatusClass() {
@@ -1001,9 +1060,15 @@ export default {
}
let res = await getCheckContractFile(params)
if (res && res.status == 200) {
- debugger
+
}
},
+ approvalStatusClass(status){
+
+ const found = this.approvalStatus.find(item => item.key == status);
+ return found ? found.color : '#000';
+
+ },
close() {
this.$emit('close')
},