@@ -166,7 +166,14 @@
-
+
+
+
+ {{ scope.row.orderNo }}
+
+
+
+
@@ -744,6 +751,15 @@ export default {
}
})
},
+ //跳转订单列表
+ toGoodslist(orderNo) {
+ this.$router.push({
+ path: '/order_manage/order_list',
+ query: {
+ orderNo: orderNo
+ }
+ })
+ },
//添加耗材弹窗增加
ruleFormsAdd() {
console.log('add')
diff --git a/src/views/order_manage/order_list.vue b/src/views/order_manage/order_list.vue
index 08836db..79fef88 100644
--- a/src/views/order_manage/order_list.vue
+++ b/src/views/order_manage/order_list.vue
@@ -244,6 +244,7 @@ export default {
this.getTableData();
}, 200);
}
+
},
methods: {
// 获取订单汇总
From 2c7042e6e2d8baa0cde9153b614cb02b9c37a7ec Mon Sep 17 00:00:00 2001
From: YeMingfei666 <1619116647@qq.com>
Date: Sat, 12 Oct 2024 15:53:29 +0800
Subject: [PATCH 6/7] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=A3=E5=AE=A2?=
=?UTF-8?q?=E4=B8=8B=E5=8D=95=E6=89=AB=E7=A0=81=E6=94=AF=E4=BB=98=E9=87=91?=
=?UTF-8?q?=E9=A2=9D=E4=B8=8D=E5=AF=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/tool/Instead/components/scan-pay.vue | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/views/tool/Instead/components/scan-pay.vue b/src/views/tool/Instead/components/scan-pay.vue
index b2f2de8..60830a0 100644
--- a/src/views/tool/Instead/components/scan-pay.vue
+++ b/src/views/tool/Instead/components/scan-pay.vue
@@ -52,7 +52,7 @@
- 32.00元
+ {{price|to2}}元
等待用户支付
@@ -91,6 +91,11 @@ export default {
default: "请使用扫码枪扫描付款码",
},
},
+ filters:{
+ to2(n){
+ return n.toFixed(2)
+ }
+ },
data() {
return {
tips: "",
@@ -191,7 +196,7 @@ export default {
this.show = true;
this.form.money = Number(this.price).toFixed(2);
if (this.openSwitch) {
- $getOrderPayUrl({ orderId: this.order.id }).then((res) => {
+ $getOrderPayUrl({ orderId: this.order.id,payAmount:this.price.toFixed(2) }).then((res) => {
console.log(res);
this.paymentQrcode = res;
});
From f1a599881c10120c48fd1cc72ef24c8ccbca6ba0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=AD=8F=E5=95=BE?= <1144797966@qq.com>
Date: Mon, 14 Oct 2024 14:48:51 +0800
Subject: [PATCH 7/7] =?UTF-8?q?=E8=80=97=E6=9D=90=E5=88=97=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/invoicing/consumable/information.vue | 1 +
src/views/product/category.vue | 7 ++++++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/views/invoicing/consumable/information.vue b/src/views/invoicing/consumable/information.vue
index 79cb332..57d9a23 100644
--- a/src/views/invoicing/consumable/information.vue
+++ b/src/views/invoicing/consumable/information.vue
@@ -963,6 +963,7 @@ export default {
shopId: localStorage.getItem("shopId"),
productId: '',//预留耗材id
column: this.stockData.column,//列名
+ conName:this.query.conName,
createdAt: arr//耗材id
})
this.stockData.loading = false;
diff --git a/src/views/product/category.vue b/src/views/product/category.vue
index 9c49823..50f658e 100644
--- a/src/views/product/category.vue
+++ b/src/views/product/category.vue
@@ -50,7 +50,12 @@
+ @current-change="paginationChange" layout="total, sizes, prev, pager, next, jumper" @size-change="(e) => {
+ tableData.size = e;
+ tableData.page = 0;
+ getTableData();
+ }
+ ">