@@ -353,4 +353,10 @@ update | |||||
- packageHome | - packageHome | ||||
- 增加 微信授权code调用方式,缓存没有则从路由获取 | - 增加 微信授权code调用方式,缓存没有则从路由获取 | ||||
- appId | - appId | ||||
- 修改 测试环境appId | |||||
- 修改 测试环境appId | |||||
## v1.0.41 | |||||
`2023.4.14` | |||||
update | |||||
- packageList | |||||
- 增加 无法购买套餐时错误提示 |
@@ -1,11 +1,11 @@ | |||||
/* | /* | ||||
* @Date: 2021-11-20 10:26:39 | * @Date: 2021-11-20 10:26:39 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-04-08 14:56:13 | |||||
* @LastEditTime: 2023-04-14 10:27:11 | |||||
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js | * @FilePath: \TelpoH5FrontendWeb\src\config\models.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
export const VERSION_MODEL = '1.0.40F'; //版本号 | |||||
export const VERSION_MODEL = '1.0.41F'; //版本号 | |||||
export const IMAGE_URL = { | export const IMAGE_URL = { | ||||
production: 'http://zfb.ssjlai.com/web/', | production: 'http://zfb.ssjlai.com/web/', | ||||
test: 'http://zfb.ssjlai.com/web/', | test: 'http://zfb.ssjlai.com/web/', | ||||
@@ -1,7 +1,7 @@ | |||||
<!-- | <!-- | ||||
* @Date: 2022-03-29 16:57:58 | * @Date: 2022-03-29 16:57:58 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-04-08 22:05:03 | |||||
* @LastEditTime: 2023-04-14 10:25:19 | |||||
* @FilePath: \TelpoH5FrontendWeb\src\views\package-list\index.vue | * @FilePath: \TelpoH5FrontendWeb\src\views\package-list\index.vue | ||||
* @description: TODO 小台风充值h5 | * @description: TODO 小台风充值h5 | ||||
--> | --> | ||||
@@ -362,8 +362,14 @@ export default { | |||||
this.wxPay(orderData); | this.wxPay(orderData); | ||||
}, 1000); | }, 1000); | ||||
} else if (res.data.code === 104) { | } else if (res.data.code === 104) { | ||||
this.$dialog.confirm({ | |||||
message: `${res.data.message}` | |||||
return this.$dialog.confirm({ | |||||
message: `${res.data.message}`, | |||||
showCancelButton: false | |||||
}) | |||||
} else if ( res.data.code !== 0){ | |||||
return this.$dialog.confirm({ | |||||
message: `${res.data.message}`, | |||||
showCancelButton: false | |||||
}) | }) | ||||
} | } | ||||
let that = this; | let that = this; | ||||