From 8cd62f2d5801e657c87829bb385c0215ec8722fc Mon Sep 17 00:00:00 2001 From: xuechunyuan <17853500702@163.com> Date: Thu, 9 Feb 2023 09:43:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + package-lock.json | 13 +- package.json | 2 +- src/config/website.js | 6 +- src/lang/zh.js | 2 +- src/page/login/userlogin.vue | 4 +- src/views/blacklist/index.vue | 228 ++++++++++++ src/views/noticelist/index.vue | 272 +++++++++++++++ src/views/system/dept.vue | 614 ++++++++++++++++----------------- src/views/system/user.vue | 92 ++--- vue.config.js | 2 +- 11 files changed, 860 insertions(+), 376 deletions(-) create mode 100644 src/views/blacklist/index.vue create mode 100644 src/views/noticelist/index.vue diff --git a/.gitignore b/.gitignore index 07c8fe4..a792ca8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .DS_Store node_modules /dist +package-lock.json /tests/e2e/videos/ /tests/e2e/screenshots/ diff --git a/package-lock.json b/package-lock.json index 1d8d71e..3963abb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10252,11 +10252,6 @@ "renderkid": "^2.0.4" } }, - "print-js": { - "version": "1.6.0", - "resolved": "https://registry.npmmirror.com/print-js/-/print-js-1.6.0.tgz", - "integrity": "sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg==" - }, "process": { "version": "0.11.10", "resolved": "https://registry.npmmirror.com/process/-/process-0.11.10.tgz", @@ -13152,6 +13147,14 @@ } } }, + "vue-print-nb": { + "version": "1.7.5", + "resolved": "https://registry.npmmirror.com/vue-print-nb/-/vue-print-nb-1.7.5.tgz", + "integrity": "sha512-iNbNyUVRWz0Ha1UTiCKxMPtHLUDGgNI8e8xmD3xqm9RlXIUeX9bT7DgNAfY8vPzqyFRHqGjxLI1rycKH366ziQ==", + "requires": { + "vue": "^2.6.11" + } + }, "vue-router": { "version": "3.6.5", "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-3.6.5.tgz", diff --git a/package.json b/package.json index d1d362e..be7fa81 100644 --- a/package.json +++ b/package.json @@ -24,11 +24,11 @@ "node-gyp": "^5.0.6", "nprogress": "^0.2.0", "portfinder": "^1.0.23", - "print-js": "^1.6.0", "script-loader": "^0.7.2", "vue": "^2.6.10", "vue-axios": "^2.1.2", "vue-i18n": "^8.7.0", + "vue-print-nb": "^1.7.5", "vue-router": "^3.0.1", "vuex": "^3.1.1" }, diff --git a/src/config/website.js b/src/config/website.js index 7563ced..b8abf85 100644 --- a/src/config/website.js +++ b/src/config/website.js @@ -2,10 +2,10 @@ * 全局配置文件 */ export default { - title: "saber", - logo: "S", + title: "车管所体检预约", + logo: "C", key: 'saber',//配置主键,目前用于存储 - indexTitle: 'Saber Admin', + indexTitle: '车管所体检预约 管理', clientId: 'saber', // 客户端id clientSecret: 'saber_secret', // 客户端密钥 tenantMode: true, // 是否开启租户模式 diff --git a/src/lang/zh.js b/src/lang/zh.js index 306ed2c..75f2559 100644 --- a/src/lang/zh.js +++ b/src/lang/zh.js @@ -1,5 +1,5 @@ export default { - title: 'Saber企业管理平台', + title: '车管所体检预约管理平台', logoutTip: '退出系统, 是否继续?', submitText: '确定', cancelText: '取消', diff --git a/src/page/login/userlogin.vue b/src/page/login/userlogin.vue index a70c2c6..66c92d4 100644 --- a/src/page/login/userlogin.vue +++ b/src/page/login/userlogin.vue @@ -5,7 +5,7 @@ ref="loginForm" :model="loginForm" label-width="0"> - + + + + + + + + + + + + diff --git a/src/views/noticelist/index.vue b/src/views/noticelist/index.vue new file mode 100644 index 0000000..745ebfa --- /dev/null +++ b/src/views/noticelist/index.vue @@ -0,0 +1,272 @@ + + + + + diff --git a/src/views/system/dept.vue b/src/views/system/dept.vue index c62272e..0a6bf4a 100644 --- a/src/views/system/dept.vue +++ b/src/views/system/dept.vue @@ -1,363 +1,337 @@