From bad2b27e342e42d9ba262e44d13c1dfc038bdbf5 Mon Sep 17 00:00:00 2001 From: jinna Date: Mon, 6 Mar 2023 16:26:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BD=93=E6=A3=80=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E9=A2=84=E7=BA=A6=E6=88=90=E5=8A=9F=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/examProject.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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;