From 5227e0ae131df4686720ac6f3f219a09384d4a0a Mon Sep 17 00:00:00 2001 From: Yer11214 <17633066053@163.com> Date: Sun, 8 Sep 2024 23:10:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E6=83=A0=E5=88=B8=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/src/views/promotions/coupon/coupon.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manager/src/views/promotions/coupon/coupon.vue b/manager/src/views/promotions/coupon/coupon.vue index 05863f8a..bdcd2638 100644 --- a/manager/src/views/promotions/coupon/coupon.vue +++ b/manager/src/views/promotions/coupon/coupon.vue @@ -178,7 +178,7 @@ export default { { title: "面额/折扣", key: "price", - // width: 150, + width: 150, render: (h, params) => { if (params.row.price) { return h("priceColorScheme", {props:{value:params.row.price,color:this.$mainColor}} ); @@ -206,14 +206,14 @@ export default { { title: "已被使用的数量/已领取数量", key: "publishNum", - width: 200, + width: 100, render: (h, params) => { return h("div", params.row.usedNum + "/" + params.row.receivedNum); }, }, { title: "获取方式", - // width: 120, + width: 120, key: "getType", render: (h, params) => { if (params.row.getType === "FREE") { @@ -232,7 +232,7 @@ export default { { title: "优惠券类型", key: "couponType", - // width: 150, + width: 150, render: (h, params) => { let text = ""; if (params.row.couponType === "DISCOUNT") { @@ -247,7 +247,7 @@ export default { { title: "品类描述", key: "scopeType", - // width: 120, + width: 120, render: (h, params) => { return promotionsScopeTypeRender(h, params); },