From 8a2ec77c8463376294654899f70c5704a3005dc9 Mon Sep 17 00:00:00 2001 From: paulGao Date: Tue, 10 May 2022 15:57:30 +0800 Subject: [PATCH 1/3] add build.sh --- build.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..bd6b5059 --- /dev/null +++ b/build.sh @@ -0,0 +1,20 @@ +#代码目录 +code_path=$PWD + +git checkout master +git pull + +cd ${code_path}/manager +rm -rf ./dist +yarn install +yarn build + +cd ${code_path}/seller +rm -rf ./dist +yarn install +yarn build + +cd ${code_path}/buyer +rm -rf ./dist +yarn install +yarn build \ No newline at end of file From 71fa00c2672a8117ffc3915d3f5a748927bcb65c Mon Sep 17 00:00:00 2001 From: paulGao Date: Wed, 11 May 2022 16:11:59 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=A7=92=E6=9D=80?= =?UTF-8?q?=E5=B7=B2=E5=94=AE=E6=95=B0=E9=87=8F=E4=B8=8D=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buyer/src/pages/promotion/seckill.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buyer/src/pages/promotion/seckill.vue b/buyer/src/pages/promotion/seckill.vue index 76ba4993..49b7291f 100644 --- a/buyer/src/pages/promotion/seckill.vue +++ b/buyer/src/pages/promotion/seckill.vue @@ -44,7 +44,7 @@
{{nowHour >= list[currIndex].timeLine ? '立即抢购' : '即将开始'}}
- 已售 + 已售
{{ item.storeName }} From 479470832dac021f231798831ca1e48d7836c009 Mon Sep 17 00:00:00 2001 From: fengtianyangyang <5411465+feng_tianyangyang@user.noreply.gitee.com> Date: Wed, 11 May 2022 19:18:04 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E7=BB=93=E7=AE=97=E5=8D=95=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/src/views/seller/bill/bill-detail.vue | 18 ++++++++++++++++++ seller/src/views/shop/bill/billDetail.vue | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/manager/src/views/seller/bill/bill-detail.vue b/manager/src/views/seller/bill/bill-detail.vue index bba01586..40f12827 100644 --- a/manager/src/views/seller/bill/bill-detail.vue +++ b/manager/src/views/seller/bill/bill-detail.vue @@ -246,6 +246,24 @@ export default { }, }, + { + title: "平台优惠券补贴金额", + key: "siteCouponCommission", + render: (h, params) => { + if(params.row.siteCouponCommission == null){ + return h( + "div", + "-" + ); + }else{ + return h( + "div", + this.$options.filters.unitPrice(params.row.siteCouponCommission, "¥") + ); + } + + }, + }, { title: "分销金额", key: "distributionRebate", diff --git a/seller/src/views/shop/bill/billDetail.vue b/seller/src/views/shop/bill/billDetail.vue index c2e086c9..c16d6024 100644 --- a/seller/src/views/shop/bill/billDetail.vue +++ b/seller/src/views/shop/bill/billDetail.vue @@ -248,6 +248,24 @@ export default { } }, }, + { + title: "平台优惠券补贴金额", + key: "siteCouponCommission", + render: (h, params) => { + if(params.row.siteCouponCommission == null){ + return h( + "div", + "-" + ); + }else{ + return h( + "div", + this.$options.filters.unitPrice(params.row.siteCouponCommission, "¥") + ); + } + + }, + }, { title: "分销金额", key: "distributionRebate",