From 991114848a8d97acd8a3c9b9ce6fcf8125f4d4e0 Mon Sep 17 00:00:00 2001 From: liuye Date: Thu, 17 Oct 2024 14:55:21 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wuxi/AppOrderList/AppOrderList.vue | 323 ++++++++++++++++++ src/project/wuxi/AppOrderList/Detail.vue | 197 +++++++++++ .../wuxi/AppRedemptionPoints/myOrderList.vue | 26 +- 3 files changed, 543 insertions(+), 3 deletions(-) create mode 100644 src/project/wuxi/AppOrderList/AppOrderList.vue create mode 100644 src/project/wuxi/AppOrderList/Detail.vue diff --git a/src/project/wuxi/AppOrderList/AppOrderList.vue b/src/project/wuxi/AppOrderList/AppOrderList.vue new file mode 100644 index 0000000..0ca53c8 --- /dev/null +++ b/src/project/wuxi/AppOrderList/AppOrderList.vue @@ -0,0 +1,323 @@ + + + + + diff --git a/src/project/wuxi/AppOrderList/Detail.vue b/src/project/wuxi/AppOrderList/Detail.vue new file mode 100644 index 0000000..e2f2877 --- /dev/null +++ b/src/project/wuxi/AppOrderList/Detail.vue @@ -0,0 +1,197 @@ + + + + + diff --git a/src/project/wuxi/AppRedemptionPoints/myOrderList.vue b/src/project/wuxi/AppRedemptionPoints/myOrderList.vue index 0c7329d..4f20284 100644 --- a/src/project/wuxi/AppRedemptionPoints/myOrderList.vue +++ b/src/project/wuxi/AppRedemptionPoints/myOrderList.vue @@ -29,12 +29,17 @@
去购买
-

核销码:{{item.verificationCode}}

+

核销码:{{item.verificationCode}}二维码

取消订单
+ +
+ +
+
@@ -56,7 +61,9 @@ export default { 'background': '#2D7DFF' }, list: [], - current: 1 + current: 1, + showImg: false, + imgUrl: '' } }, computed: { @@ -125,6 +132,10 @@ export default { } }) }, + viewImg(row) { + this.imgUrl = row.maQrcode + this.showImg = true + } }, onReachBottom() { this.current = this.current + 1 @@ -290,6 +301,9 @@ export default { color: #2D7DFF; margin-left: 8px; } + .qr-code { + margin-left: 32px; + } } .btn { width: 136px; @@ -309,7 +323,13 @@ export default { } } } - + .img-box { + padding: 32px; + img { + width: 300px; + height: 300px; + } + } }