From b1ae10b570133787a992b99ca3b5f56cec02c650 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Wed, 30 Nov 2022 09:13:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ApplyList.vue | 36 +++++++++---------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/project/pidu/app/AppGridMemberScore/components/ApplyList.vue b/project/pidu/app/AppGridMemberScore/components/ApplyList.vue index 3464f731..764b58d1 100644 --- a/project/pidu/app/AppGridMemberScore/components/ApplyList.vue +++ b/project/pidu/app/AppGridMemberScore/components/ApplyList.vue @@ -9,18 +9,20 @@ :current.sync="search.current" :size.sync="search.size" @getList="getList"> - + @@ -48,25 +50,19 @@ name: '', info: {}, colConfigs: [ - { slot: 'goods', label: '商品' }, - { prop: 'merchandiseIntegral', align: 'center', label: '单价' }, - { prop: 'merchandiseNumber', align: 'center', label: '数量' }, + { prop: 'createUserName', align: 'left', label: '申请人' }, + { prop: 'applyItem', align: 'center', label: '申请事项' }, + { slot: 'imgs', label: '凭证' }, { - prop: 'arriveTime', + prop: 'applyIntegral', align: 'center', - label: '兑换量' - }, - { - prop: 'visibleRange', - align: 'center', - label: '可见范围', - formart: v => v === '0' ? '不限' : '指定网格' + label: '积分数' }, { prop: 'status', align: 'center', label: '状态', - formart: v => this.mapStatus(v) + formart: v => this.dict.getLable('integralApplyStatus', v) } ], tableData: [], @@ -75,7 +71,9 @@ }, created () { - this.getList() + this.dict.load('integralApplyStatus').then(() => { + this.getList() + }) }, methods: {