From 9de1e0de159432555e4dc65b18ef7949abd34386 Mon Sep 17 00:00:00 2001 From: fengchengzhi Date: Wed, 25 Jul 2018 12:57:56 +0800 Subject: [PATCH] no message --- src/view/service-evaluation.vue | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/view/service-evaluation.vue b/src/view/service-evaluation.vue index 99719a1..c850810 100644 --- a/src/view/service-evaluation.vue +++ b/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; + } } }); }