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: {