浏览代码

区分b端,c端跳转返回逻辑

test
wzl 3 个月前
父节点
当前提交
0aefa1da3b
共有 1 个文件被更改,包括 7 次插入5 次删除
  1. +7
    -5
      src/views/psychological-scale/index.vue

+ 7
- 5
src/views/psychological-scale/index.vue 查看文件

@@ -268,16 +268,18 @@ export default {
this.$toast('问卷提交成功', 3000)
this.isError = false
setTimeout(() => {
if (this.isModel) {
let fromSsjl = this.$store.getters.fromSsjl === 'true'
if (fromSsjl) {
// c端跳转按c端返回逻辑处理
this.onNavBack()
} else if (this.isModel) {
// 建模页跳转过来的要回建模页
/* this.$router.replace({
this.$router.replace({
name: 'PsychologicalModeling',
query: {
uid: this.uid,
},
}) */
this.onNavBack();

})
} else {
this.$router.replace({
name: 'PsychologicalScaleDetail',


正在加载...
取消
保存