|
|
|
@ -28,7 +28,7 @@ |
|
|
|
|
clearable |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in companyNatureTypeEnum" |
|
|
|
|
v-for="(item, index) in companyNatureTypeEnum.slice(1)" |
|
|
|
|
:key="index" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
@ -49,7 +49,7 @@ |
|
|
|
|
clearable |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in auditMarkEnum" |
|
|
|
|
v-for="(item, index) in auditMarkEnum.slice(1)" |
|
|
|
|
:key="index" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
@ -300,7 +300,7 @@ |
|
|
|
|
<!-- 新增 --> |
|
|
|
|
<add |
|
|
|
|
:controlWindows="controlWindows" |
|
|
|
|
:companyNatureTypeEnum="companyNatureTypeEnum" |
|
|
|
|
:companyNatureTypeEnum="companyNatureTypeEnum.slice(1)" |
|
|
|
|
@closeWindow="search" |
|
|
|
|
/> |
|
|
|
|
<!-- 认证 --> |
|
|
|
@ -332,16 +332,17 @@ |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
<template #companyNature> |
|
|
|
|
<p v-if="oilCompanyMatch[0]"> |
|
|
|
|
{{ |
|
|
|
|
companyNatureEnum.find( |
|
|
|
|
<p> |
|
|
|
|
<!-- {{ |
|
|
|
|
companyNatureTypeEnum.find( |
|
|
|
|
(item) => item.value === oilCompanyMatch[0].companyNature |
|
|
|
|
).label |
|
|
|
|
}} |
|
|
|
|
}} --> |
|
|
|
|
</p> |
|
|
|
|
</template> |
|
|
|
|
<template #companyDockType> |
|
|
|
|
<p> |
|
|
|
|
<p v-if="oilCompanyMatch[0].companyDockType === null"></p> |
|
|
|
|
<p v-else> |
|
|
|
|
{{ |
|
|
|
|
oilCompanyMatch[0].companyDockType == 0 ? "对接客户" : "平台客户" |
|
|
|
|
}} |
|
|
|
@ -356,7 +357,7 @@ |
|
|
|
|
<p> |
|
|
|
|
{{ |
|
|
|
|
auditMarkEnum.find( |
|
|
|
|
(item) => item.value == oilCompanyMatch[0].enableMark |
|
|
|
|
(item) => item.value == oilCompanyMatch[0].auditMark |
|
|
|
|
).label |
|
|
|
|
}} |
|
|
|
|
</p> |
|
|
|
@ -386,7 +387,7 @@ |
|
|
|
|
<template #accountState> |
|
|
|
|
<p v-if="oilCompanyMatch[3]"> |
|
|
|
|
{{ |
|
|
|
|
accountStatusEnum.find( |
|
|
|
|
companyTypeEnum.find( |
|
|
|
|
(item) => item.value === oilCompanyMatch[3].accountState |
|
|
|
|
).label |
|
|
|
|
}} |
|
|
|
@ -545,6 +546,10 @@ export default { |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
auditMarkEnum: [ |
|
|
|
|
{ |
|
|
|
|
value: null, |
|
|
|
|
label: "", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "未提交", |
|
|
|
|
value: "0", |
|
|
|
@ -567,6 +572,10 @@ export default { |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
companyNatureTypeEnum: [ |
|
|
|
|
{ |
|
|
|
|
value: null, |
|
|
|
|
label: "", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "零售客户", |
|
|
|
|
value: "0", |
|
|
|
|