diff --git a/project/fengdu/AppOutSource/AppMarkRate/components/List.vue b/project/fengdu/AppOutSource/AppMarkRate/components/List.vue index 616591c0..9bd7d2a3 100644 --- a/project/fengdu/AppOutSource/AppMarkRate/components/List.vue +++ b/project/fengdu/AppOutSource/AppMarkRate/components/List.vue @@ -118,7 +118,10 @@ export default { return h('span', { }, this.dict.getLabel('evaluatorType', row.evaluatorType)) }}, - { prop: 'assessType', label: '评价类型', align: 'center' }, + { prop: 'assessType', label: '评价类型', align: 'center',render: (h, {row}) => { + return h('span', { + }, this.dict.getLabel('evaluationType', row.assessType)) + } }, { prop: 'address', label: '门店地址', align: 'center' }, { prop: 'score', label: '分数', align: 'center' }, ], @@ -128,7 +131,7 @@ export default { }, created () { - this.$dict.load('evaluatorType').then(() => { + this.$dict.load('evaluatorType','evaluationType').then(() => { this.getList() }) },