diff --git a/.env.development b/.env.development
index 9580695..ee6cc00 100644
--- a/.env.development
+++ b/.env.development
@@ -1,5 +1,5 @@
# 页面标题
-VITE_APP_TITLE = 云舒心理云平台-学生端
+VITE_APP_TITLE = 云舒心理成长平台-学生端
# 开发环境配置
VITE_APP_ENV = 'development'
diff --git a/.env.production b/.env.production
index 5f4feec..db3a516 100644
--- a/.env.production
+++ b/.env.production
@@ -1,8 +1,12 @@
# 页面标题
-VITE_APP_TITLE = 云舒心理云平台-学生端
+VITE_APP_TITLE = 云舒心理成长平台-学生端
# 生产环境配置
VITE_APP_ENV = 'production'
# 生产环境
-VITE_APP_BASE_API = 'https://api.ysmental.com/health-api'
+# VITE_APP_BASE_API = 'https://api.ysmental.com/health-api'
+# 南昌生产环境
+# VITE_APP_BASE_API = 'http://xlcp.xgc.nchu.edu.cn/health-api'
+# 江海
+VITE_APP_BASE_API = 'http://xlcz.jhu.cn:8000/health-api'
diff --git a/index.html b/index.html
index 755b454..cd89466 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
云舒-心理健康平台-学生端
+ 云舒心理成长平台-学生端
diff --git a/src/App.vue b/src/App.vue
index b3837fd..1031987 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,22 @@
diff --git a/src/assets/images/logo.jpg b/src/assets/images/logo.jpg
index dcae1a2..93a5449 100644
Binary files a/src/assets/images/logo.jpg and b/src/assets/images/logo.jpg differ
diff --git a/src/router/index.js b/src/router/index.js
index aaa96bc..44c33d2 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -6,7 +6,7 @@ import ScaleList from '@/views/ScaleList/index.vue'
import ExamDetail from '@/views/ExamDetail/index.vue'
const router = createRouter({
- history: createWebHashHistory('/'),
+ history: createWebHashHistory('/web'),
routes: [
{
path: '/login',
diff --git a/vite.config.js b/vite.config.js
index c39e751..9b5a936 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -18,7 +18,7 @@ export default defineConfig({
outDir: 'web',
chunkSizeWarningLimit: 1600
},
- base: '/',
+ base: '/web',
plugins: [
vue(),
vueSetupExtend(),
@@ -65,7 +65,7 @@ export default defineConfig({
server: {
proxy: {
'/api': {
- target: 'http://localhost:8080/',
+ target: 'http://localhost:8070/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}