xiaozy_产品列表
xiaozhiyong 2 years ago
parent 6fdc081c61
commit a9d14aedb4
  1. 2
      src/components/autocomplete/index.vue
  2. 24
      src/views/customerManagement/companyManagement/index.vue
  3. 8
      src/views/financialCenter/enterpriseRecharge/index.vue
  4. 12
      src/views/product/index.vue

@ -30,7 +30,7 @@
<template> <template>
<el-option <el-option
v-for="(item, index) in list" v-for="(item, index) in list"
:key="item.id + index" :key="index"
:label="item[config.labelKey]" :label="item[config.labelKey]"
:value="item[config.valueKey]" :value="item[config.valueKey]"
> >

@ -62,7 +62,7 @@
clearable clearable
> >
<el-option <el-option
v-for="(item, index) in companyNatureTypeEnum" v-for="(item, index) in companyTypeEnum"
:key="index" :key="index"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
@ -521,6 +521,28 @@ export default {
total: 0, total: 0,
params: {}, params: {},
}, },
companyTypeEnum: [
{
label: "柴油账户",
value: "0",
},
{
label: "汽油账户",
value: "1",
},
{
label: "LNG账户",
value: "2",
},
{
label: "尿素账户",
value: "3",
},
{
label: "油批账户",
value: "4",
},
],
auditMarkEnum: [ auditMarkEnum: [
{ {
label: "未提交", label: "未提交",

@ -355,13 +355,7 @@ export default {
examine: false, examine: false,
}, },
accountStatusEnum: accountStatusEnum, accountStatusEnum: accountStatusEnum,
rechargeTypeEnum: [ rechargeTypeEnum: rechargeTypeEnum,
{
label: "圈回",
value: "TURN",
},
...rechargeTypeEnum,
],
rechargeStatusEnum: rechargeStatusEnum, rechargeStatusEnum: rechargeStatusEnum,
auditMarkEnum: [ auditMarkEnum: [
{ {

@ -99,23 +99,17 @@
</el-table-column> </el-table-column>
<el-table-column prop="refineryLevel" label="成本价" width="70"> <el-table-column prop="refineryLevel" label="成本价" width="70">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
{{ row.floorPrice | toNumberFixed }}/{{ {{ row.floorPrice | toNumberFixed }}/{{ row.measurement }}
row.measurement | toNumberFixed
}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="refineryLevel" label="企业销售价" width="100"> <el-table-column prop="refineryLevel" label="企业销售价" width="100">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
{{ row.salePrice2company | toNumberFixed }}/{{ {{ row.salePrice2company | toNumberFixed }}/{{ row.measurement }}
row.measurement | toNumberFixed
}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="refineryLevel" label="个人销售价" width="100"> <el-table-column prop="refineryLevel" label="个人销售价" width="100">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
{{ row.salePrice2personal | toNumberFixed }}/{{ {{ row.salePrice2personal | toNumberFixed }}/{{ row.measurement }}
row.measurement | toNumberFixed
}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="时间" width="235"> <el-table-column label="时间" width="235">

Loading…
Cancel
Save