This commit is contained in:
2026-01-18 17:42:46 +08:00
parent 836bdc9409
commit f038dbab41
42 changed files with 3068 additions and 575 deletions

View File

@@ -0,0 +1,3 @@
export default {
baseURL: 'http://localhost:8000/'
}

View File

@@ -0,0 +1,46 @@
const config = {
baseURL: 'http://localhost:8000/',
tabbarList: [
{
pagePath: "/pages/index/index",
text: "首页",
icon: "home",
activeIcon: "home-filled",
badge: 0
},
{
pagePath: "/pages/account/bill/index",
text: "账单",
icon: "list",
activeIcon: "list",
badge: 0
},
{
pagePath: "/pages/account/statistics/index",
text: "统计",
icon: "chart",
activeIcon: "chart",
badge: 0
},
{
pagePath: "/pages/ucenter/index/index",
text: "我的",
icon: "person",
activeIcon: "person-filled",
badge: 0
}
],
whitelist: [
'/pages/ucenter/login/index',
'/pages/ucenter/register/index',
'/pages/ucenter/agreement/user',
'/pages/ucenter/agreement/privacy',
]
}
import devConfig from './dev.config.js'
if (process.env.NODE_ENV === 'development') {
Object.assign(config, devConfig)
}
export default config