From 8c7027672bd5b7c2871cb59b88e05bab52be9333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Tue, 14 Jan 2025 16:09:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BB=BB=E5=8A=A1=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E9=A1=B5=E9=9D=A2=20=E6=96=B0=E5=A2=9E=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E8=A1=A8=E5=8D=95=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/BusinessCom/ChoosePersonnel/index.vue | 149 +++++++ src/views/system/dict/index.vue | 469 +++++++++++++--------- src/views/task/form.vue | 118 ++++++ src/views/task/index.vue | 206 ++++++++++ src/views/tool/componentview/index.vue | 19 + vite.config.js | 5 +- 6 files changed, 773 insertions(+), 193 deletions(-) create mode 100644 src/BusinessCom/ChoosePersonnel/index.vue create mode 100644 src/views/task/form.vue create mode 100644 src/views/task/index.vue create mode 100644 src/views/tool/componentview/index.vue diff --git a/src/BusinessCom/ChoosePersonnel/index.vue b/src/BusinessCom/ChoosePersonnel/index.vue new file mode 100644 index 0000000..17fd4aa --- /dev/null +++ b/src/BusinessCom/ChoosePersonnel/index.vue @@ -0,0 +1,149 @@ + + + + + diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue index 8f87966..50eef6e 100644 --- a/src/views/system/dict/index.vue +++ b/src/views/system/dict/index.vue @@ -1,179 +1,252 @@ + diff --git a/src/views/task/index.vue b/src/views/task/index.vue new file mode 100644 index 0000000..05e2610 --- /dev/null +++ b/src/views/task/index.vue @@ -0,0 +1,206 @@ + + + + + diff --git a/src/views/tool/componentview/index.vue b/src/views/tool/componentview/index.vue new file mode 100644 index 0000000..63c0557 --- /dev/null +++ b/src/views/tool/componentview/index.vue @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index 1e12b0d..7d1a1db 100644 --- a/vite.config.js +++ b/vite.config.js @@ -25,13 +25,14 @@ export default defineConfig(({ mode, command }) => { }, // vite 相关配置 server: { - port: 8080, + port: 9527, host: true, open: true, proxy: { // https://cn.vitejs.dev/config/#server-proxy '/api': { - target: 'http://localhost:8080', + // target:'http://192.168.2.101:8080', + target:'http://localhost:8888', changeOrigin: true, rewrite: (p) => p.replace(/^\/dev-api/, '') }