修改体检项目预约成功提示

main
jinna 3 years ago
parent 6c9dfd9297
commit bad2b27e34
  1. 9
      src/views/examProject.vue

@ -35,7 +35,7 @@
<div class="tip_txt">
<div>预约成功后若不能按时体检请提前取消</div>
<div>未提前取消且未按期体检将被拉入黑名单</div>
<div>被拉黑用户10日内不可再预约</div>
<div>被拉黑用户{{blacklistOutDate}}日内不可再预约</div>
</div>
<div class="btn" @click="clickSucc">知道了</div>
</div>
@ -64,7 +64,8 @@ export default {
isShow: false,
isSuccess: false,
userInfo: {},
failTips: ''
failTips: '',
blacklistOutDate:''
};
},
mounted() {
@ -130,6 +131,7 @@ export default {
if (retData.code == 200) {
this.isShow = true;
this.isSuccess = true
this.blacklistOutDate = retData.data.blacklistOutDate
} else {
this.failTips = retData.msg;
this.isShow = true;
@ -145,7 +147,8 @@ export default {
console.log(res)
if (res.code == 200) {
this.isShow = true;
this.isSuccess = true
this.isSuccess = true;
this.blacklistOutDate = res.data.blacklistOutDate
} else {
this.failTips = res.msg
this.isShow = true;

Loading…
Cancel
Save