From 81689fc7768b86cc3a3a88abce1cf6a7830bb624 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=99=88=E6=80=9D=E8=B1=AA?= <1437200870@qq.com>
Date: Sun, 25 Aug 2024 11:17:18 +0800
Subject: [PATCH 01/22] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A=E5=89=8D?=
=?UTF-8?q?=E5=8F=B0=E4=BB=BB=E5=8A=A1=E8=AE=BE=E8=AE=A1=E9=9B=8F=E5=BD=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/task/task/index.vue | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/views/task/task/index.vue b/src/views/task/task/index.vue
index 8806ad1..1fc3495 100644
--- a/src/views/task/task/index.vue
+++ b/src/views/task/task/index.vue
@@ -370,6 +370,7 @@ export default {
this.taskInputList();
},
+
addTaskInput(){
this.taskInputAdd = false;
this.findByInputId();
From 2cbe0231083133aefd92f74bd5b9836c58ccc01a Mon Sep 17 00:00:00 2001
From: wxy <14293288+zysysys@user.noreply.gitee.com>
Date: Sun, 25 Aug 2024 11:31:03 +0800
Subject: [PATCH 02/22] =?UTF-8?q?```feat(payment):=20=E5=AE=9E=E7=8E=B0?=
=?UTF-8?q?=E5=88=9D=E5=A7=8B=E6=94=AF=E4=BB=98=E9=A1=B5=E9=9D=A2=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
新增支付页面,包含支付金额和支付方式的选择。支持自定义金额及支付宝、微信支付方式。点击“确认支付”按钮后,根据支付方式执行相应的操作,目前仅模拟支付宝支付成功的结果。
```
---
src/views/money/pay/index.vue | 135 ++++++++++++++++++++++++++++++++++
1 file changed, 135 insertions(+)
create mode 100644 src/views/money/pay/index.vue
diff --git a/src/views/money/pay/index.vue b/src/views/money/pay/index.vue
new file mode 100644
index 0000000..71b367c
--- /dev/null
+++ b/src/views/money/pay/index.vue
@@ -0,0 +1,135 @@
+
+
+
+ -
+
我要支付
+
+ -
+
支付金额
+
+ 充值100
+ 充值500
+ 充值1000
+ 充值2000
+ 充值5000
+ 自定义
+
+
+ -
+
支付方式
+
+ 支付宝
+ 微信
+
+
+ -
+
支付金额
+
+
+
+
+ 确认支付
+
+
+
+
+
+
+
From bd9e302e52036a06ce9c1707c9d28938ea985577 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=99=88=E6=80=9D=E8=B1=AA?= <1437200870@qq.com>
Date: Sun, 25 Aug 2024 11:41:39 +0800
Subject: [PATCH 03/22] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A=E5=89=8D?=
=?UTF-8?q?=E5=8F=B0=E4=BB=BB=E5=8A=A1=E8=AE=BE=E8=AE=A1=E9=9B=8F=E5=BD=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/task/task/index.vue | 26 ++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)
diff --git a/src/views/task/task/index.vue b/src/views/task/task/index.vue
index 1fc3495..4e8d9b0 100644
--- a/src/views/task/task/index.vue
+++ b/src/views/task/task/index.vue
@@ -189,28 +189,28 @@
-
+
-
+
-
+
-
+
-
+
@@ -340,6 +340,7 @@ export default {
taskInputReq:{},
taskList:[],
taskInfoList:[],
+ taskInfo:{},
tableList:[],
structureList:[],
};
@@ -350,9 +351,14 @@ export default {
watch: {},
//方法集合",
methods: {
+ //选择数据表改变数据
+ changeTableName(row){
+ this.taskInfo = row;
+ },
+
//查询字段
- findByInputId(row){
- findByInputId(row.id).then(res=>{
+ findByInputId(taskInfo){
+ findByInputId(taskInfo.id).then(res=>{
this.structureList = res.data;
})
@@ -371,9 +377,9 @@ export default {
},
- addTaskInput(){
+ addTaskInput(taskInfo){
this.taskInputAdd = false;
- this.findByInputId();
+ this.findByInputId(taskInfo);
this.taskInputFieldAdd = true;
},
From badc198cdedf7f7f2c89c3d6e04f66de1168f682 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=99=88=E6=80=9D=E8=B1=AA?= <1437200870@qq.com>
Date: Sun, 25 Aug 2024 11:45:16 +0800
Subject: [PATCH 04/22] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A=E5=89=8D?=
=?UTF-8?q?=E5=8F=B0=E4=BB=BB=E5=8A=A1=E8=AE=BE=E8=AE=A1=E9=9B=8F=E5=BD=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/task/task/index.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/views/task/task/index.vue b/src/views/task/task/index.vue
index 4e8d9b0..9b9cea7 100644
--- a/src/views/task/task/index.vue
+++ b/src/views/task/task/index.vue
@@ -187,7 +187,7 @@
-
+
@@ -353,6 +353,7 @@ export default {
methods: {
//选择数据表改变数据
changeTableName(row){
+ console.log(row);
this.taskInfo = row;
},
From d3659e5468609390c82df65afa27adabb336ef90 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=99=88=E6=80=9D=E8=B1=AA?= <1437200870@qq.com>
Date: Sun, 25 Aug 2024 11:47:30 +0800
Subject: [PATCH 05/22] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A=E5=89=8D?=
=?UTF-8?q?=E5=8F=B0=E4=BB=BB=E5=8A=A1=E8=AE=BE=E8=AE=A1=E9=9B=8F=E5=BD=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/task/task/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/task/task/index.vue b/src/views/task/task/index.vue
index 9b9cea7..b8fcd94 100644
--- a/src/views/task/task/index.vue
+++ b/src/views/task/task/index.vue
@@ -199,7 +199,7 @@
-
+
From f4d9897c2dfeaaa395998bb0e372563cbdffec9d Mon Sep 17 00:00:00 2001
From: lwj <3529558005@qq.com>
Date: Sun, 25 Aug 2024 11:48:51 +0800
Subject: [PATCH 06/22] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE?=
=?UTF-8?q?=E6=BA=90=E5=88=97=E8=A1=A8=E7=9A=84=E7=8A=B6=E6=80=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/etl/switch/index.vue | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/src/views/etl/switch/index.vue b/src/views/etl/switch/index.vue
index 6d7ff59..a737215 100644
--- a/src/views/etl/switch/index.vue
+++ b/src/views/etl/switch/index.vue
@@ -136,16 +136,16 @@
其他信息
-
-
-
-
-
-
-
-
-
-
+
+
+ {{ dict.label }}
+
+
+
@@ -210,7 +210,10 @@
+ prop="status">
+
+
+
Date: Sun, 25 Aug 2024 11:50:03 +0800
Subject: [PATCH 07/22] =?UTF-8?q?=E5=B0=8F=E5=8D=A1=E7=89=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/port/port/index.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/views/port/port/index.vue b/src/views/port/port/index.vue
index 53d02d5..07f3293 100644
--- a/src/views/port/port/index.vue
+++ b/src/views/port/port/index.vue
@@ -5,7 +5,8 @@
手机号查询归属地
- 测试
+
+
购买
From 95b3db2f10ee87acfe67de9a425e9464557d6d23 Mon Sep 17 00:00:00 2001
From: wxy <14293288+zysysys@user.noreply.gitee.com>
Date: Sun, 25 Aug 2024 11:52:08 +0800
Subject: [PATCH 08/22] =?UTF-8?q?```feat(user):=20=E6=B7=BB=E5=8A=A0?=
=?UTF-8?q?=E5=AF=BC=E8=88=AA=E8=87=B3=E5=85=85=E5=80=BC=E9=A1=B5=E9=9D=A2?=
=?UTF-8?q?=E7=9A=84=E6=8C=89=E9=92=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
用户余额页面现在包含一个“充值”按钮,点击后将导向充值页面,以提升用户交互体验。
```
---
src/views/money/user/index.vue | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/views/money/user/index.vue b/src/views/money/user/index.vue
index d2035df..0f5cdc2 100644
--- a/src/views/money/user/index.vue
+++ b/src/views/money/user/index.vue
@@ -3,11 +3,11 @@
用户余额
余额:{{ userBalanceData.userBalance || '加载中...' }}
+ 充值
-