diff --git a/buyer/src/pages/home/userCenter/MoneyManagement.vue b/buyer/src/pages/home/userCenter/MoneyManagement.vue index cf709af4..2d5ee116 100644 --- a/buyer/src/pages/home/userCenter/MoneyManagement.vue +++ b/buyer/src/pages/home/userCenter/MoneyManagement.vue @@ -369,6 +369,8 @@ export default { return h('div', [h('span', {}, '申请中')]); } else if (params.row.applyStatus === 'VIA_AUDITING') { return h('div', [h('span', {}, '提现成功')]); + } else if (params.row.applyStatus === 'ERROR') { + return h('div', [h('span', {}, '提现失败')]); } else { return h('div', [h('span', {}, '审核拒绝')]); } diff --git a/manager/src/views/member/advance/withdrawApply.vue b/manager/src/views/member/advance/withdrawApply.vue index 891e7832..38ba8262 100644 --- a/manager/src/views/member/advance/withdrawApply.vue +++ b/manager/src/views/member/advance/withdrawApply.vue @@ -165,6 +165,8 @@ export default { return h("Tag", { props: { color: "green" } }, "审核通过"); } else if (params.row.applyStatus == "SUCCESS") { return h("Tag", { props: { color: "blue" } }, "提现成功"); + } else if (params.row.applyStatus == "ERROR") { + return h("Tag", { props: { color: "blue" } }, "提现失败"); } else { return h("Tag", { props: { color: "red" } }, "审核拒绝"); } @@ -249,6 +251,8 @@ export default { return "审核通过(提现成功)"; } else if (val === "FAIL_AUDITING") { return "审核拒绝"; + } else if (val === "ERROR") { + return "提现失败"; } else { return "未知状态"; } diff --git a/seller/src/views/promotion/full-discount/full-discount-add.vue b/seller/src/views/promotion/full-discount/full-discount-add.vue index 28707b7d..2c6776d4 100644 --- a/seller/src/views/promotion/full-discount/full-discount-add.vue +++ b/seller/src/views/promotion/full-discount/full-discount-add.vue @@ -299,11 +299,14 @@ export default { delete params.promotionGoodsList; params.number = -1; } else { + let scopeId = []; params.number = 1; params.promotionGoodsList.forEach((e) => { - e.startTime = params.stratTime; + e.startTime = params.startTime; e.endTime = params.endTime; + scopeId.push(e.skuId); }); + params.scopeId = scopeId.toString(); } if (params.discountType == "fullMinusFlag") { params.fullMinusFlag = true;