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 @@