@@ -704,4 +704,11 @@ update | |||||
# 无基础套餐时 | # 无基础套餐时 | ||||
#是零川或者小台风,跳转话费查询页面 | #是零川或者小台风,跳转话费查询页面 | ||||
#否则跳转错误页面 | #否则跳转错误页面 | ||||
- 增加 一个物联网卡的错误页面 | |||||
- 增加 一个物联网卡的错误页面 | |||||
## v1.0.88 | |||||
`2023.9.25` | |||||
update | |||||
- 问卷调查 | |||||
- 修改 答题完成后返回方法,修复使用浏览器原生返回方法可能会导致页面返回异常 |
@@ -1,11 +1,11 @@ | |||||
/* | /* | ||||
* @Date: 2021-11-20 10:26:39 | * @Date: 2021-11-20 10:26:39 | ||||
* @LastEditors: JinxChen | * @LastEditors: JinxChen | ||||
* @LastEditTime: 2023-09-18 10:45:59 | |||||
* @LastEditTime: 2023-09-25 09:15:41 | |||||
* @FilePath: \TelpoH5FrontendWeb\src\config\models.js | * @FilePath: \TelpoH5FrontendWeb\src\config\models.js | ||||
* @description: | * @description: | ||||
*/ | */ | ||||
export const VERSION_MODEL = '1.0.87F'; //版本号 | |||||
export const VERSION_MODEL = '1.0.88F'; //版本号 | |||||
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/', | ||||
@@ -203,7 +203,14 @@ export default { | |||||
if (re.success) { | if (re.success) { | ||||
this.$toast('问卷提交成功', 3000) | this.$toast('问卷提交成功', 3000) | ||||
setTimeout(() => { | setTimeout(() => { | ||||
window.history.back(-1) | |||||
// 2023.09.25 使用此返回方法可能会导致页面返回异常,故使用路由跳转到指定页面 | |||||
this.$router.replace({ | |||||
name: 'PsychologicalModeling', | |||||
query: { | |||||
uid: this.uid | |||||
} | |||||
}) | |||||
/* window.history.back(-1); */ | |||||
}, 3000) | }, 3000) | ||||
} else { | } else { | ||||
//this.$toast(re.msg); | //this.$toast(re.msg); | ||||