From 0f1df0b87df9d1829a89840a8910ff8c0b8e7727 Mon Sep 17 00:00:00 2001 From: wanglei <1336977847@qq.com> Date: Fri, 28 Jun 2024 09:25:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=84=E4=BB=B7=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E5=AD=97=E5=85=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fengdu/AppOutSource/AppMarkRate/components/List.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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() }) },