fix: 经营类型字典

This commit is contained in:
wanglei
2024-06-26 11:23:53 +08:00
parent 54880a9562
commit e73dd17908

View File

@@ -98,6 +98,11 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="经营类型" slot="operatorType" align="center">
<template v-slot="{row}">
<span>{{$dict.getLabel('operatorType',row.operatorType)}}</span>
</template>
</el-table-column>
<el-table-column label="门店评分" slot="mark" align="center"> <el-table-column label="门店评分" slot="mark" align="center">
<template v-slot="{row}"> <template v-slot="{row}">
<el-rate :value="row.storeScore" show-score text-color="#ff9900" disabled></el-rate> <el-rate :value="row.storeScore" show-score text-color="#ff9900" disabled></el-rate>
@@ -177,7 +182,7 @@ export default {
{prop: 'phone', label: '联系电话', align: 'center'}, {prop: 'phone', label: '联系电话', align: 'center'},
{prop: 'createTime', label: '录入时间', align: 'center'}, {prop: 'createTime', label: '录入时间', align: 'center'},
{prop: 'address', label: '门店地址', align: 'center'}, {prop: 'address', label: '门店地址', align: 'center'},
{prop: 'operatorTypes', label: '经营类型', align: 'center'}, {slot: 'operatorType'},
{slot: 'mark', align: 'center'} {slot: 'mark', align: 'center'}
], ],
tableData: [], tableData: [],