This commit is contained in:
xiaozhiyong
2023-04-28 13:11:46 +08:00
parent d8e33a8700
commit e0e8bdcaed
23 changed files with 1426 additions and 945 deletions

View File

@@ -72,13 +72,13 @@
effect="dark"
:type="
accountStateEnum.find(
(item) => item.value === row.accountState
(item) => item.value == row.accountState
).type
"
>
{{
accountStateEnum.find(
(item) => item.value === row.accountState
(item) => item.value == row.accountState
).label
}}
</el-tag>
@@ -90,7 +90,7 @@
<el-table-column label="企业性质" minWidth="120">
<template slot-scope="{ row }">
{{
companyNatureEnum.find((item) => item.value === row.companyNature)
companyNatureEnum.find((item) => item.value == row.companyNature)
.label
}}
</template>
@@ -176,7 +176,7 @@
<p v-if="oilCompanyMatch[0]">
{{
companyNatureEnum.find(
(item) => item.value === oilCompanyMatch[0].companyNature
(item) => item.value == oilCompanyMatch[0].companyNature
).label
}}
</p>
@@ -195,7 +195,7 @@
<p v-if="oilCompanyMatch[1]">
{{
accountStatusEnum.find(
(item) => item.value === oilCompanyMatch[1].accountState
(item) => item.value == oilCompanyMatch[1].accountState
).label
}}
</p>