This commit is contained in:
xiaozhiyong
2023-02-14 13:40:38 +08:00
parent 308362a143
commit e4b34f6d63
2 changed files with 7 additions and 7 deletions

View File

@@ -52,8 +52,6 @@
:height="tableHeight"
:data="tableData"
style="width: 100%"
:header-cell-style="$utils.cellStyle"
:cell-style="$utils.cellStyle"
>
<el-table-column
prop="orderSerialNumber"
@@ -79,7 +77,7 @@
</el-table-column>
<el-table-column prop="orderSerialNumber" label="账户类型" width="90">
<template slot-scope="{ row }">
<p>
<p v-if="row.accountType">
{{
refineryAccountTypeEnum.find(
(item) => item.value === row.accountType

View File

@@ -73,10 +73,12 @@
</el-table-column>
<el-table-column prop="orderSerialNumber" label="炼厂类型" width="90">
<template slot-scope="{ row }">
{{
refineryTypeEnum.find((item) => item.value === row.refineryType)
.label
}}
<p v-if="row.refineryType">
{{
refineryTypeEnum.find((item) => item.value === row.refineryType)
.label
}}
</p>
</template>
</el-table-column>
<el-table-column prop="refineryLevel" label="炼厂等级" width="90">