From 05817d5db3097dccd2f19f02b340b032a2215fc3 Mon Sep 17 00:00:00 2001 From: kuaileWu <1432334894@qq.com> Date: Thu, 5 Jun 2025 19:13:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=82=A3=E8=80=85=E7=AB=AF?= =?UTF-8?q?=E5=B0=B1=E8=AF=8A=E8=AE=B0=E5=BD=95=E9=A1=B5=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E2=80=9C=E9=BB=84=E7=B1=B3=E5=87=89=E7=B3=95=E2=80=9D=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E5=B0=B1=E8=AF=8A=E8=AE=B0=E5=BD=95=EF=BC=8C=E4=BD=86?= =?UTF-8?q?=E5=AD=98=E5=9C=A8=E4=BA=8E=E9=A1=B6=E9=83=A8=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/visitorList.vue | 5 +++++ pages/prebook_list/prebook_list.vue | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/components/visitorList.vue b/components/visitorList.vue index b6ff0b7..d31eeb6 100644 --- a/components/visitorList.vue +++ b/components/visitorList.vue @@ -19,6 +19,10 @@ export default { add: { type: Boolean, default: () => false + }, + has_visit: { + type: Boolean, + default: () => false } }, data() { @@ -47,6 +51,7 @@ export default { param.limit = 10000 var obj = new Object() + obj.has_visit = this.has_visit ? 1 : 0 if (this.visitor_id != 0) obj.visitor_id = this.visitor_id this.$http.req('api/user/get_visitors', obj, 'POST').then(data => { if (data == -1) return diff --git a/pages/prebook_list/prebook_list.vue b/pages/prebook_list/prebook_list.vue index bc07235..39e487e 100644 --- a/pages/prebook_list/prebook_list.vue +++ b/pages/prebook_list/prebook_list.vue @@ -1,6 +1,6 @@