From d73e8bff5884830cc91c97026bcbb1d54c63503e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AD=AA=E6=AD=AA=E6=9D=B0?= Date: Fri, 13 Mar 2026 11:50:06 +0800 Subject: [PATCH] =?UTF-8?q?=E9=92=89=E9=92=89=E7=AE=A1=E7=90=86=E7=AB=AF?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=AE=BF=E5=AE=A2=E7=AE=A1=E7=90=86=E7=95=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 2 +- package.json | 6 +- src/router/index.js | 6 + src/views/home.vue | 27 ++- src/views/visitorManage.vue | 177 ++++++++++++++ yarn.lock | 471 ++++++++++++++++++++++-------------- 6 files changed, 496 insertions(+), 193 deletions(-) create mode 100644 src/views/visitorManage.vue diff --git a/.env b/.env index 689ef1f..3056e8d 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -VITE_APP_VERSION=1.2.20251216-10 \ No newline at end of file +VITE_APP_VERSION=1.2.20260313-20 \ No newline at end of file diff --git a/package.json b/package.json index 30c73e2..5d102c3 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "preview": "vite preview" }, "dependencies": { - "axios": "^1.6.2", + "axios": "1.12.0", "dingtalk-jsapi": "^3.0.29", "html2canvas": "^1.4.1", "vant": "^3.4.3", @@ -20,9 +20,9 @@ "vuex": "^4.0.2" }, "devDependencies": { - "@vitejs/plugin-vue": "^2.3.0", + "@vitejs/plugin-vue": "4", "sass": "^1.56.1", - "vite": "^2.9.0", + "vite": "^4.0.5", "vite-plugin-style-import": "^1.4.1" } } diff --git a/src/router/index.js b/src/router/index.js index 6d2213e..c546f35 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -86,6 +86,12 @@ const routes = [ component: () => import("../views/specialCrowd.vue"), meta: { title: "特殊人员录入" }, }, + { + path: "/visitorManage", + name: "visitorManage", + component: () => import("../views/visitorManage.vue"), + meta: { title: "访客管理" }, + }, { path: "/", name: "", diff --git a/src/views/home.vue b/src/views/home.vue index 9ae0b53..617f768 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -1,7 +1,10 @@