修改错误提示语

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

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

Loading…
Cancel
Save