更改初始页和基地址

This commit is contained in:
WindowBird 2025-09-01 08:42:23 +08:00
parent 9c1475c59c
commit 4b8653a11b
2 changed files with 6 additions and 6 deletions

View File

@ -1,15 +1,15 @@
{ {
"pages": [ "pages": [
{ {
"path": "pages/index/index", "path": "pages/login/login",
"style": { "style": {
"navigationBarTitleText": "设备租赁",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },
{ {
"path": "pages/login/login", "path": "pages/index/index",
"style": { "style": {
"navigationBarTitleText": "设备租赁",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },

View File

@ -19,17 +19,17 @@ const ENV_CONFIG = {
develop: { develop: {
// 开发环境 // 开发环境
// baseUrl: 'http://192.168.2.174:4501', // baseUrl: 'http://192.168.2.174:4501',
baseUrl: 'http://192.168.2.244:4601', baseUrl: 'https://chu.chuangtewl.com/prod-api',
appId: 1, // TODO: 根据实际后端配置调整 appId: 1, // TODO: 根据实际后端配置调整
}, },
trial: { trial: {
// 体验版 // 体验版
baseUrl: 'http://192.168.2.244:4601', baseUrl: 'https://chu.chuangtewl.com/prod-api',
appId: 1, // TODO: 根据实际后端配置调整 appId: 1, // TODO: 根据实际后端配置调整
}, },
release: { release: {
// 正式版 // 正式版
baseUrl: 'http://192.168.2.244:4601', baseUrl: 'https://chu.chuangtewl.com/prod-api',
appId: 1, // TODO: 根据实际后端配置调整 appId: 1, // TODO: 根据实际后端配置调整
}, },
} }