From b979f770975350e547f8ac7fd6dbee6cefc4cdca Mon Sep 17 00:00:00 2001
From: TianYu <332368756@qq.com>
Date: Mon, 29 May 2023 09:51:19 +0800
Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dbug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
yudao-ui-app/App.vue | 1 -
yudao-ui-app/libs/pay.js | 4 ++--
yudao-ui-app/pages/goods_cashier/index.vue | 1 -
yudao-ui-app/pages/index/index.vue | 2 +-
yudao-ui-app/utils/request.js | 1 -
5 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/yudao-ui-app/App.vue b/yudao-ui-app/App.vue
index 8d3bbc918..3985d9038 100644
--- a/yudao-ui-app/App.vue
+++ b/yudao-ui-app/App.vue
@@ -219,7 +219,6 @@
// 获取推广员ID
setSpreadId() {
const spreadId = this.$route.query.spreadId || ''
- console.log('spreadId', spreadId)
if (spreadId) {
this.$store.commit("SET_SPREADID", spreadId);
}
diff --git a/yudao-ui-app/libs/pay.js b/yudao-ui-app/libs/pay.js
index 1f09568a4..0fcc8b728 100644
--- a/yudao-ui-app/libs/pay.js
+++ b/yudao-ui-app/libs/pay.js
@@ -42,9 +42,9 @@ const unityPay = (options) => {
}
_options.payInfo.openid = openId
if (_options.payType === 'WXPAY') {
- _options.payInfo.payChannel = '微信支付'
+ _options.payInfo.payChannel = 'public'
} else if (_options.payType === 'ALIPAY') {
- _options.payInfo.payChannel = '支付宝'
+ _options.payInfo.payChannel = 'appAliPay'
}
uni.showLoading({
title: '支付中',
diff --git a/yudao-ui-app/pages/goods_cashier/index.vue b/yudao-ui-app/pages/goods_cashier/index.vue
index edfed8233..554554211 100644
--- a/yudao-ui-app/pages/goods_cashier/index.vue
+++ b/yudao-ui-app/pages/goods_cashier/index.vue
@@ -198,7 +198,6 @@
payType: that.paytype,
createOrderFun: wechatOrderPay,
payResultHandle: (res) => {
- console.log(res)
return {
jsapiResult: res.jsapiConfig,
body: res.body
diff --git a/yudao-ui-app/pages/index/index.vue b/yudao-ui-app/pages/index/index.vue
index 18246ba30..1e66621ad 100644
--- a/yudao-ui-app/pages/index/index.vue
+++ b/yudao-ui-app/pages/index/index.vue
@@ -208,7 +208,7 @@
followHid: true,
followCode: false,
logoUrl: "",
- bannerList: {},
+ bannerList: [],
imgUrls: [],
itemNew: [],
menus: [],
diff --git a/yudao-ui-app/utils/request.js b/yudao-ui-app/utils/request.js
index dcd6a5386..152718363 100644
--- a/yudao-ui-app/utils/request.js
+++ b/yudao-ui-app/utils/request.js
@@ -26,7 +26,6 @@ function baseRequest(url, method, data, {
if (!noAuth) {
//登录过期自动登录
if (!store.state.app.token && !checkLogin()) {
- console.log(store.state.app.token,checkLogin(),123123)
toLogin();
return Promise.reject({
msg: '未登录'
From bd53fae597ed407b98172d2254d8103f14e248a3 Mon Sep 17 00:00:00 2001
From: Jruome <2559028966@qq.com>
Date: Mon, 29 May 2023 10:19:13 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E7=AE=A1=E7=90=86=E7=AB=AF=20=E6=8C=89?=
=?UTF-8?q?=E9=92=AE=E8=B7=AF=E7=94=B1=E6=A0=87=E8=AF=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
yudao-ui-admin/src/router/index.js | 24 +++++++++----------
.../freightSet/creatTemplates.vue | 2 +-
.../views/deliverGoods/freightSet/index.vue | 6 ++---
.../src/views/mall/product/property/index.vue | 8 +++----
.../src/views/mall/trade/afterSale/index.vue | 2 +-
.../src/views/member/promoter/index.vue | 4 ++--
.../src/views/member/user/index.vue | 2 +-
.../src/views/shop/phoneRecord/index.vue | 2 +-
.../src/views/shop/rechargeGear/index.vue | 2 +-
.../src/views/shop/rechargeOrder/index.vue | 8 +++----
10 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/yudao-ui-admin/src/router/index.js b/yudao-ui-admin/src/router/index.js
index af9c8d102..05a23465c 100644
--- a/yudao-ui-admin/src/router/index.js
+++ b/yudao-ui-admin/src/router/index.js
@@ -64,18 +64,18 @@ export const constantRoutes = [
component: (resolve) => require(['@/views/error/401'], resolve),
hidden: true
},
- {
- path: '',
- component: Layout,
- redirect: 'index',
- children: [{
- path: 'index',
- component: (resolve) => require(['@/views/index'], resolve),
- name: '首页',
- meta: {title: '首页', icon: 'dashboard', affix: true}
- }
- ]
- },
+ // {
+ // path: '',
+ // component: Layout,
+ // redirect: 'index',
+ // children: [{
+ // path: 'index',
+ // component: (resolve) => require(['@/views/index'], resolve),
+ // name: '首页',
+ // meta: {title: '首页', icon: 'dashboard', affix: true}
+ // }
+ // ]
+ // },
{
path: '/user',
component: Layout,
diff --git a/yudao-ui-admin/src/views/deliverGoods/freightSet/creatTemplates.vue b/yudao-ui-admin/src/views/deliverGoods/freightSet/creatTemplates.vue
index 9a1761ef2..7b6dcf338 100644
--- a/yudao-ui-admin/src/views/deliverGoods/freightSet/creatTemplates.vue
+++ b/yudao-ui-admin/src/views/deliverGoods/freightSet/creatTemplates.vue
@@ -158,7 +158,7 @@