Browse Source

no message

feature/feature-compatible
fengchengzhi 7 years ago
parent
commit
9de1e0de15
1 changed files with 13 additions and 2 deletions
  1. 15
      src/view/service-evaluation.vue

15
src/view/service-evaluation.vue

@ -210,8 +210,19 @@ export default {
this.isCanEvaluation = true;
}
} else if (code == 1) {
this.code = 4;
this.statusShow = true;
if (res.msg == "已过期") {
//
this.code = 3;
this.statusShow = true;
} else if (res.msg == "不可重复评价") {
//
this.code = 2;
this.statusShow = true;
} else if (res.msg == "账号不一致") {
//
this.code = 4;
this.statusShow = true;
}
}
});
}

Loading…
Cancel
Save