Commit 2ccc0fe1 by caoyanzhi

Merge branch 'feature/3.0年后需求-卡券调整' into dev

parents 301a8e33 95038329
......@@ -143,7 +143,8 @@ export default {
},
getCardList() {
this.loading = true;
getCardList(Object.assign({}, this.listParams, this.showOutCouponIcon ? { useExtCard: 1 } : {})).then(res => {
// useExtCard 能否使用微盟外部券: 0:否, 1:可以
getCardList(Object.assign({}, this.listParams, { useExtCard: this.showOutCouponIcon ? 1 : 0 })).then(res => {
if (res.errorCode === 0) {
this.tableList = (res.result.result || []).map(el => {
// 如果是外部券,而且配置显示外部券标识,需要缩短cardName的显示长度
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment