From 49dfd644a293ad30b4f66962cc40e6def5e4ad68 Mon Sep 17 00:00:00 2001 From: mahe Date: Fri, 9 Jun 2023 17:39:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BC=98=E6=83=A0=E5=88=B8?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/src/views/promotions/coupon/coupon.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manager/src/views/promotions/coupon/coupon.vue b/manager/src/views/promotions/coupon/coupon.vue index 161fa475..9a15d0e5 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( @@ -215,7 +215,7 @@ export default { }, { title: "获取方式", - width: 120, + // width: 120, key: "getType", render: (h, params) => { if (params.row.getType === "FREE") { @@ -234,7 +234,7 @@ export default { { title: "优惠券类型", key: "couponType", - width: 150, + // width: 150, render: (h, params) => { let text = ""; if (params.row.couponType === "DISCOUNT") { @@ -249,7 +249,7 @@ export default { { title: "品类描述", key: "scopeType", - width: 120, + // width: 120, render: (h, params) => { return promotionsScopeTypeRender(h, params); },