修改错误提示语

main
jinna 3 years ago
parent 0deac82a1b
commit 3cbd364f40
  1. 6
      src/views/examProject.vue

@ -45,7 +45,7 @@
</div> </div>
<div class="tips">预约失败</div> <div class="tips">预约失败</div>
<div class="tip_txt"> <div class="tip_txt">
<div>您选择的时间段已无号请重新预约</div> <div>{{failTips}}</div>
</div> </div>
<div class="btn" @click="clickFail">知道了</div> <div class="btn" @click="clickFail">知道了</div>
</div> </div>
@ -63,7 +63,8 @@ export default {
proArr:[], proArr:[],
isShow:false, isShow:false,
isSuccess:false, isSuccess:false,
userInfo:{} userInfo:{},
failTips:''
}; };
}, },
mounted() { mounted() {
@ -115,6 +116,7 @@ export default {
this.isShow = true; this.isShow = true;
this.isSuccess = true this.isSuccess = true
}else{ }else{
this.failTips = res.msg
this.isShow = true; this.isShow = true;
this.isSuccess = false this.isSuccess = false
} }

Loading…
Cancel
Save