diff --git a/project/fengdu/app/AppIntegratingOrder/components/GirdList.vue b/project/fengdu/app/AppIntegratingOrder/components/GirdList.vue index f213ae92..47686ce6 100644 --- a/project/fengdu/app/AppIntegratingOrder/components/GirdList.vue +++ b/project/fengdu/app/AppIntegratingOrder/components/GirdList.vue @@ -137,7 +137,7 @@ { prop: 'goodsSerialNumber', label: '商品ID', align: 'left' }, { slot: 'goods', align: 'center' }, { prop: 'goodsType', label: '商品类型', align: 'center', format: v => this.dict.getLabel('integralSGType', v) }, - { prop: 'quantity', label: '数量', align: 'center', format: v => `x${v}` }, + { prop: 'quantity', label: '数量', align: 'center', format: v => `${v}` }, { prop: 'usedIntegral', label: '消耗积分', align: 'center' }, { prop: 'payMoney', label: '兑换后再付', align: 'center' }, { prop: 'integralUserName', label: '兑换人', align: 'center' }, diff --git a/project/fengdu/app/AppIntegratingOrder/components/ResidentList.vue b/project/fengdu/app/AppIntegratingOrder/components/ResidentList.vue index 8186ed6e..92556a9f 100644 --- a/project/fengdu/app/AppIntegratingOrder/components/ResidentList.vue +++ b/project/fengdu/app/AppIntegratingOrder/components/ResidentList.vue @@ -138,7 +138,7 @@ { prop: 'goodsSerialNumber', label: '商品ID', align: 'left' }, { slot: 'goods', align: 'center' }, { prop: 'goodsType', label: '商品类型', align: 'center', format: v => this.dict.getLabel('integralSGType', v) }, - { prop: 'quantity', label: '数量', align: 'center', format: v => `x${v}` }, + { prop: 'quantity', label: '数量', align: 'center', format: v => `${v}` }, { prop: 'usedIntegral', label: '消耗积分', align: 'center' }, { prop: 'payMoney', label: '兑换后再付', align: 'center' }, { prop: 'integralUserName', label: '兑换人', align: 'center' },