更新
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
<template>
|
||||
<el-option
|
||||
v-for="(item, index) in list"
|
||||
:key="item.id + index"
|
||||
:key="index"
|
||||
:label="item[config.labelKey]"
|
||||
:value="item[config.valueKey]"
|
||||
>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
clearable
|
||||
>
|
||||
<el-option
|
||||
v-for="(item, index) in companyNatureTypeEnum"
|
||||
v-for="(item, index) in companyTypeEnum"
|
||||
:key="index"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
@@ -521,6 +521,28 @@ export default {
|
||||
total: 0,
|
||||
params: {},
|
||||
},
|
||||
companyTypeEnum: [
|
||||
{
|
||||
label: "柴油账户",
|
||||
value: "0",
|
||||
},
|
||||
{
|
||||
label: "汽油账户",
|
||||
value: "1",
|
||||
},
|
||||
{
|
||||
label: "LNG账户",
|
||||
value: "2",
|
||||
},
|
||||
{
|
||||
label: "尿素账户",
|
||||
value: "3",
|
||||
},
|
||||
{
|
||||
label: "油批账户",
|
||||
value: "4",
|
||||
},
|
||||
],
|
||||
auditMarkEnum: [
|
||||
{
|
||||
label: "未提交",
|
||||
|
||||
@@ -355,13 +355,7 @@ export default {
|
||||
examine: false,
|
||||
},
|
||||
accountStatusEnum: accountStatusEnum,
|
||||
rechargeTypeEnum: [
|
||||
{
|
||||
label: "圈回",
|
||||
value: "TURN",
|
||||
},
|
||||
...rechargeTypeEnum,
|
||||
],
|
||||
rechargeTypeEnum: rechargeTypeEnum,
|
||||
rechargeStatusEnum: rechargeStatusEnum,
|
||||
auditMarkEnum: [
|
||||
{
|
||||
|
||||
@@ -99,23 +99,17 @@
|
||||
</el-table-column>
|
||||
<el-table-column prop="refineryLevel" label="成本价" width="70">
|
||||
<template slot-scope="{ row }">
|
||||
{{ row.floorPrice | toNumberFixed }}/{{
|
||||
row.measurement | toNumberFixed
|
||||
}}
|
||||
{{ row.floorPrice | toNumberFixed }}/{{ row.measurement }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="refineryLevel" label="企业销售价" width="100">
|
||||
<template slot-scope="{ row }">
|
||||
{{ row.salePrice2company | toNumberFixed }}/{{
|
||||
row.measurement | toNumberFixed
|
||||
}}
|
||||
{{ row.salePrice2company | toNumberFixed }}/{{ row.measurement }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="refineryLevel" label="个人销售价" width="100">
|
||||
<template slot-scope="{ row }">
|
||||
{{ row.salePrice2personal | toNumberFixed }}/{{
|
||||
row.measurement | toNumberFixed
|
||||
}}
|
||||
{{ row.salePrice2personal | toNumberFixed }}/{{ row.measurement }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="时间" width="235">
|
||||
|
||||
Reference in New Issue
Block a user