From 680149a6c07be54b563d53494c831bec63fe48ff Mon Sep 17 00:00:00 2001
From: huangchenhao <123673748@qq.com>
Date: Tue, 11 Nov 2025 11:22:47 +0800
Subject: [PATCH] =?UTF-8?q?=E5=86=B0=E9=9B=AA=E4=B8=93=E9=A2=98PC=E7=AB=AF?=
=?UTF-8?q?=20=E4=BA=BA=E5=91=98=E7=AE=A1=E7=90=86=E8=B0=83=E6=95=B4=20?=
=?UTF-8?q?=E8=B7=9F=E5=85=BB=E6=8A=A4=E7=AB=99=E7=AE=A1=E7=90=86=E5=90=88?=
=?UTF-8?q?=E5=B9=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/screen/src/router/index.js | 5 -
packages/screen/src/utils/request.js | 2 +-
.../component/addDialog.vue | 97 ++++
.../component/detailDialog.vue | 37 ++
.../component/editDialog.vue | 45 ++
.../ServiceStationManagePage/personData.vue | 428 +++++++++++++++++-
6 files changed, 602 insertions(+), 12 deletions(-)
create mode 100644 packages/screen/src/views/ServiceStationManagePage/component/addDialog.vue
create mode 100644 packages/screen/src/views/ServiceStationManagePage/component/detailDialog.vue
create mode 100644 packages/screen/src/views/ServiceStationManagePage/component/editDialog.vue
diff --git a/packages/screen/src/router/index.js b/packages/screen/src/router/index.js
index 946f776..aa26760 100644
--- a/packages/screen/src/router/index.js
+++ b/packages/screen/src/router/index.js
@@ -27,11 +27,6 @@ const routes = [
name: 'yhzwz',
component: () => import('../views/MaterialManagement/index.vue')
},
- {
- path: '/yhzry/:data?',
- name: 'yhzry',
- component: () => import('../views/PersonManagement/index.vue')
- },
{
path: '/yhzevent',
name: 'yhzevent',
diff --git a/packages/screen/src/utils/request.js b/packages/screen/src/utils/request.js
index bef8c14..14dac79 100644
--- a/packages/screen/src/utils/request.js
+++ b/packages/screen/src/utils/request.js
@@ -8,7 +8,7 @@ const service = axios.create({
// 请求拦截器
service.interceptors.request.use(config => {
// 暂时先写死token 实际项目中再调整token的获取位置
- const token = 'eyJhbGciOiJIUzUxMiJ9.eyJ1c2VySWQiOjE5ODY2ODgzMjY1MjAwNTc4NTcsImFjY291bnQiOiJieHp0IiwidXVpZCI6ImMyY2E5OGU4LTIyYzItNGZmZi1hZWE0LTBiNWNiZmE4YjNlMSIsInJlbWVtYmVyTWUiOnRydWUsImV4cGlyYXRpb25EYXRlIjoxNzYyNzgzOTkwMzUxLCJvdGhlcnMiOm51bGwsInN1YiI6IjE5ODY2ODgzMjY1MjAwNTc4NTciLCJpYXQiOjE3NjI3NTUxOTAsImV4cCI6MTc2Mjc4Mzk5MH0.zqQcAE08fr2jQd7HcQ9Y3i-gWb2TrCWuUxSzl1kXOoJe2rp1Yly0ffrY6_1jY0ybHJwihONChqiSc-8jRTKYKw'
+ const token = 'eyJhbGciOiJIUzUxMiJ9.eyJ1c2VySWQiOjE5ODY2ODgzMjY1MjAwNTc4NTcsImFjY291bnQiOiJieHp0IiwidXVpZCI6Ijc5Zjk5NWE0LTAyNGEtNDA3My04YjVhLTIxNGI4MDBmNmQ1YyIsInJlbWVtYmVyTWUiOnRydWUsImV4cGlyYXRpb25EYXRlIjoxNzYyODUxOTg2OTI1LCJvdGhlcnMiOm51bGwsInN1YiI6IjE5ODY2ODgzMjY1MjAwNTc4NTciLCJpYXQiOjE3NjI4MjMxODYsImV4cCI6MTc2Mjg1MTk4Nn0.nZziqdUarLN1uRfs1pBRrBt-HxqBOGJy67HwaAbIiY7uSv-q9kzfiec7Djd1jkV_OnzhW3jN8h-pl8ILCFl0HA'
// const token = localStorage.getItem('token');
if (token) {
config.headers.Authorization = `${token}`;
diff --git a/packages/screen/src/views/ServiceStationManagePage/component/addDialog.vue b/packages/screen/src/views/ServiceStationManagePage/component/addDialog.vue
new file mode 100644
index 0000000..b6e298f
--- /dev/null
+++ b/packages/screen/src/views/ServiceStationManagePage/component/addDialog.vue
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/screen/src/views/ServiceStationManagePage/component/detailDialog.vue b/packages/screen/src/views/ServiceStationManagePage/component/detailDialog.vue
new file mode 100644
index 0000000..ebcfee2
--- /dev/null
+++ b/packages/screen/src/views/ServiceStationManagePage/component/detailDialog.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/screen/src/views/ServiceStationManagePage/component/editDialog.vue b/packages/screen/src/views/ServiceStationManagePage/component/editDialog.vue
new file mode 100644
index 0000000..3cb11f9
--- /dev/null
+++ b/packages/screen/src/views/ServiceStationManagePage/component/editDialog.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/screen/src/views/ServiceStationManagePage/personData.vue b/packages/screen/src/views/ServiceStationManagePage/personData.vue
index 0bd9c7a..22ff3a4 100644
--- a/packages/screen/src/views/ServiceStationManagePage/personData.vue
+++ b/packages/screen/src/views/ServiceStationManagePage/personData.vue
@@ -1,9 +1,54 @@
- 1145141919810
+
+
+
+
+
+
+
+ 新增人员
+ 导出
+
+
+
+
+
+
+
+
+
\ No newline at end of file