From 7c775f769214ffbcf8bde17dde2f10efaa192ff3 Mon Sep 17 00:00:00 2001 From: "pikachu1995@126.com" Date: Thu, 2 Mar 2023 06:52:15 +0800 Subject: [PATCH 01/11] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=86=85=E5=AE=B9=EF=BC=9A=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E3=80=81=E6=9C=80=E4=BD=8E=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E9=87=91=E9=A2=9D=E3=80=81=E5=BE=AE=E4=BF=A1=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E5=BA=94=E7=94=A8ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../setting/WITHDRAWAL_SETTING.vue | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/manager/src/views/sys/setting-manage/setting/WITHDRAWAL_SETTING.vue b/manager/src/views/sys/setting-manage/setting/WITHDRAWAL_SETTING.vue index 747644df..21596fd6 100644 --- a/manager/src/views/sys/setting-manage/setting/WITHDRAWAL_SETTING.vue +++ b/manager/src/views/sys/setting-manage/setting/WITHDRAWAL_SETTING.vue @@ -6,11 +6,25 @@ - + + + + + + + + 微信 + 支付宝 + + + + + + +
-
@@ -23,6 +37,9 @@ export default { return { formValidate: { // 表单数据 apply: true, + minPrice: "", + type: "", + wechatAppId: "", }, switchTitle: "提现审核是否开启", // 切换title @@ -42,6 +59,7 @@ export default { }, // 保存设置 setupSetting() { + setSetting(this.type, this.formValidate).then((res) => { if (res.success) { this.$Message.success("保存成功!"); From 8599708af3602e29a2476c8882085e0e83a7f0ac Mon Sep 17 00:00:00 2001 From: misworga831 Date: Wed, 8 Mar 2023 21:58:29 +0800 Subject: [PATCH 02/11] Increase payment support and update parameters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Improved payment system with WeChat and AliPay support - Increased minimum recharge amount to `1` - Added maximum of `9` characters for the recharge amount - Added minimum withdraw amount setting - Added real name field for AliPay - Added third-party login field for AliPay - Added maxlength of `9` characters for the withdraw amount - Added a span tag to append '元' to the recharge amount - Added a new function `with [buyer/src/pages/home/userCenter/MoneyManagement.vue] - Raise the minimum recharge amount to `1` - Allow for a maximum of `9` characters for the recharge amount - Added support for WeChat and AliPay - Added a minimum withdraw amount setting - Added a real name field for AliPay - Added a third-party login field for AliPay - Added maxlength of `9` characters for the withdraw amount - Added a span tag to append '元' to the recharge amount - Fixed typo [buyer/src/api/pay.js] - Add a new function `withdrawalSettingVO` for payment result inquiry - Change the parameters for `payCallback` function --- buyer/src/api/pay.js | 14 ++ .../pages/home/userCenter/MoneyManagement.vue | 167 +++++++++++------- 2 files changed, 119 insertions(+), 62 deletions(-) diff --git a/buyer/src/api/pay.js b/buyer/src/api/pay.js index c18d9db1..0b0d2e02 100644 --- a/buyer/src/api/pay.js +++ b/buyer/src/api/pay.js @@ -46,3 +46,17 @@ export function payCallback (params) { params }); } + +/** + * 支付结果查询 + * @param orderType 交易类型,可用值:TRADE,ORDER,RECHARGE + * @param sn 订单编号 + */ +export function withdrawalSettingVO (params) { + return request({ + url: `/buyer/wallet/wallet/withdrawalSettingVO`, + needToken: true, + method: Method.GET, + params + }); +} diff --git a/buyer/src/pages/home/userCenter/MoneyManagement.vue b/buyer/src/pages/home/userCenter/MoneyManagement.vue index 5075fbb6..cf709af4 100644 --- a/buyer/src/pages/home/userCenter/MoneyManagement.vue +++ b/buyer/src/pages/home/userCenter/MoneyManagement.vue @@ -1,13 +1,13 @@ - diff --git a/seller/src/views/shop/shopSetting.vue b/seller/src/views/shop/shopSetting.vue index 1cbad7b6..85aa5d25 100644 --- a/seller/src/views/shop/shopSetting.vue +++ b/seller/src/views/shop/shopSetting.vue @@ -49,9 +49,11 @@ + 店铺楼层装修是否开启,开启后移动端PC端将会自动展示装修的内容 + 店铺是否开启自提功能 + - + - + + diff --git a/manager/src/views/page/article-manage/template/historyHotWords.vue b/manager/src/views/page/article-manage/template/historyHotWords.vue index 5b095484..77d0b4d6 100644 --- a/manager/src/views/page/article-manage/template/historyHotWords.vue +++ b/manager/src/views/page/article-manage/template/historyHotWords.vue @@ -2,10 +2,15 @@
- - - + @@ -16,16 +21,15 @@

-
+ diff --git a/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue b/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue index cb57be19..d03e3d82 100644 --- a/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue +++ b/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue @@ -49,7 +49,7 @@