瀏覽代碼

修复 建模完成状态判断错误的问题

master
JinxChen 1 年之前
父節點
當前提交
35323c8a12
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/views/psychological-modeling/index.vue

+ 1
- 1
src/views/psychological-modeling/index.vue 查看文件

@@ -107,7 +107,7 @@ export default {
if (re.success) {
if (re.response && re.response.state === -1) {
this.$toast('用户不存在或未绑定手表')
} else if (re.response && re.response.state === 1) {
} else if (re.response && re.response.initScaleState === 1) {
// 2023.6.1 需求变更,建模完成直接跳到心理健康汇总页面
this.$router.push(`/psychologicalMain?uid=${this.uid}`);
} else {


Loading…
取消
儲存