From 07230156e60a61f8bb95bdcc92947cf03c658b0c Mon Sep 17 00:00:00 2001 From: callmeyan Date: Tue, 6 Dec 2022 15:29:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E7=AE=A1=E7=90=86=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=9A=84=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin-fe/src/App.vue | 7 +- admin-fe/src/assets/app.css | 56 ++++++++++- admin-fe/src/components/input/index.ts | 3 + .../components/input/{index.vue => input.vue} | 0 admin-fe/src/main.ts | 1 + admin-fe/src/router/routes.ts | 19 ++-- admin-fe/src/service/store.ts | 14 ++- admin-fe/src/util/http.ts | 15 ++- admin-fe/src/views/Login.vue | 95 ++++++++++--------- admin-fe/src/views/Test.vue | 2 +- admin-fe/src/views/admin/Home.vue | 6 +- admin-fe/src/views/layout/AdminLayout.vue | 71 ++++++++++++++ admin-fe/vite.config.js | 1 + 13 files changed, 222 insertions(+), 68 deletions(-) create mode 100644 admin-fe/src/components/input/index.ts rename admin-fe/src/components/input/{index.vue => input.vue} (100%) create mode 100644 admin-fe/src/views/layout/AdminLayout.vue diff --git a/admin-fe/src/App.vue b/admin-fe/src/App.vue index d5a04fd..137dc27 100644 --- a/admin-fe/src/App.vue +++ b/admin-fe/src/App.vue @@ -1,19 +1,22 @@ \ No newline at end of file diff --git a/admin-fe/src/views/Test.vue b/admin-fe/src/views/Test.vue index 4cc12ea..1691f88 100644 --- a/admin-fe/src/views/Test.vue +++ b/admin-fe/src/views/Test.vue @@ -20,7 +20,7 @@ + \ No newline at end of file diff --git a/admin-fe/vite.config.js b/admin-fe/vite.config.js index 6262208..4a6a8d8 100644 --- a/admin-fe/vite.config.js +++ b/admin-fe/vite.config.js @@ -2,6 +2,7 @@ import vue from '@vitejs/plugin-vue' import vueJsxPlugin from "@vitejs/plugin-vue-jsx"; export default { + // 开发服务信息 server: { host:'::' },