From 2941fd2aa64853fe513258e9d058854b4a6d9891 Mon Sep 17 00:00:00 2001 From: JinxChen <2183691628@qq.com> Date: Sat, 25 Feb 2023 16:34:07 +0800 Subject: [PATCH] =?UTF-8?q?fix=20-=20=E4=BF=AE=E5=A4=8D=20=E8=B0=83?= =?UTF-8?q?=E8=B5=B7=E5=BE=AE=E4=BF=A1=E6=94=AF=E4=BB=98=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 ++++++- src/config/models.js | 2 +- src/router/index.js | 6 +++--- src/views/index.vue | 2 +- src/views/package-list/index.vue | 10 +++++----- src/views/pay-result/index.vue | 4 ++-- 6 files changed, 18 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index c77d146..d6d616d 100644 --- a/README.md +++ b/README.md @@ -187,4 +187,9 @@ feature ## v1.0.19 `2023.2.25` fix -- 修复 路由切换页面不刷新的问题 \ No newline at end of file +- 修复 路由切换页面不刷新的问题 + +## v1.0.20 +`2023.2.25` +fix +- 修复 调起微信支付异常的问题 \ No newline at end of file diff --git a/src/config/models.js b/src/config/models.js index 53585e7..9fcbd00 100644 --- a/src/config/models.js +++ b/src/config/models.js @@ -5,7 +5,7 @@ * @FilePath: \AntpayFrontEnd\src\config\models.js * @description: */ -export const VERSION_MODEL = '1.0.19F'; //版本号 +export const VERSION_MODEL = '1.0.20F'; //版本号 export const IMAGE_URL = { production: 'http://zfb.ssjlai.com/web/', test: 'http://zfb.ssjlai.com/web/', diff --git a/src/router/index.js b/src/router/index.js index 66710a3..4b192a8 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,7 +1,7 @@ /* * @Date: 2022-01-19 10:08:26 * @LastEditors: JinxChen - * @LastEditTime: 2023-02-25 15:56:31 + * @LastEditTime: 2023-02-25 16:33:59 * @FilePath: \TelpoH5FrontendWeb\src\router\index.js * @description: */ @@ -26,11 +26,11 @@ const router = new VueRouter({ routes, }); router.beforeEach((to, form, next) => { - Nprogress.start(); + /* Nprogress.start(); */ next(); }); router.afterEach(() => { - Nprogress.done(); + /* Nprogress.done(); */ }); export default router; diff --git a/src/views/index.vue b/src/views/index.vue index cabec20..7e94bde 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -1,5 +1,5 @@