diff --git a/src/views/examProject.vue b/src/views/examProject.vue
index 266173e..5acdf09 100644
--- a/src/views/examProject.vue
+++ b/src/views/examProject.vue
@@ -35,7 +35,7 @@
预约成功后若不能按时体检请提前取消
未提前取消且未按期体检将被拉入黑名单
-
被拉黑用户10日内不可再预约
+
被拉黑用户{{blacklistOutDate}}日内不可再预约
知道了
@@ -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;