diff --git a/.env.development b/.env.development index 1ee7c21..751c66a 100644 --- a/.env.development +++ b/.env.development @@ -1,8 +1,9 @@ # 页面标题 -VITE_APP_TITLE = 后台管理系统 +VITE_APP_TITLE = 政务云后台管理系统 # 开发环境配置 VITE_APP_ENV = 'development' # 开发环境 VITE_APP_BASE_API = 'http://192.168.18.9:8080/' +VITE_APP_PLATFORM = 'http://192.168.18.99/platform' \ No newline at end of file diff --git a/.env.production b/.env.production index 437aee0..5b9acaf 100644 --- a/.env.production +++ b/.env.production @@ -1,11 +1,12 @@ # 页面标题 -VITE_APP_TITLE = 后台管理系统 +VITE_APP_TITLE = 政务云后台管理系统 # 生产环境配置 VITE_APP_ENV = 'production' # 生产环境 VITE_APP_BASE_API = 'http://47.109.205.240:8080/' +VITE_APP_PLATFORM = 'http://47.109.205.240/platform' # 是否在打包时开启压缩,支持 gzip 和 brotli VITE_BUILD_COMPRESS = gzip \ No newline at end of file diff --git a/.env.staging b/.env.staging index 9620abc..6dfbab9 100644 --- a/.env.staging +++ b/.env.staging @@ -1,5 +1,5 @@ # 页面标题 -VITE_APP_TITLE = 后台管理系统 +VITE_APP_TITLE = 政务云后台管理系统 # 生产环境配置 VITE_APP_ENV = 'staging' diff --git a/.gitignore b/.gitignore index f14792a..9c34e07 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,8 @@ selenium-debug.log *.sln *.local *.history +*.zip +*.rar package-lock.json yarn.lock diff --git a/src/api/login.js b/src/api/login.js index 949c53d..8a99ab2 100644 --- a/src/api/login.js +++ b/src/api/login.js @@ -43,7 +43,7 @@ export function getInfo() { export function logout() { return request({ url: '/auth/logout', - method: 'post' + method: 'delete' }) } diff --git a/src/assets/logo/yunying.png b/src/assets/logo/yunying.png new file mode 100644 index 0000000..2137e1a Binary files /dev/null and b/src/assets/logo/yunying.png differ diff --git a/src/assets/logo/zhengwu.png b/src/assets/logo/zhengwu.png new file mode 100644 index 0000000..f538220 Binary files /dev/null and b/src/assets/logo/zhengwu.png differ diff --git a/src/components/icons.vue b/src/components/icons.vue new file mode 100644 index 0000000..fc7e303 --- /dev/null +++ b/src/components/icons.vue @@ -0,0 +1,12 @@ + + + diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index e4a473c..770a118 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -6,6 +6,8 @@