feat: 初始化工程

This commit is contained in:
2026-09-07 19:41:38 +08:00
commit cdb1f80464
25 changed files with 10845 additions and 0 deletions

44
src/pages.json Normal file
View File

@@ -0,0 +1,44 @@
{
"pages": [
{
"path": "pages/index/index",
"style": { "navigationBarTitleText": "首页" }
}
{
"path": "pages/user/index",
"style": { "navigationBarTitleText": "我的" }
}
],
"tabBar": {
"color": "#999999",
"selectedColor": "#8b5cf6",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/tabs/home.png",
"selectedIconPath": "static/tabs/home-active.png"
},
{
"pagePath": "pages/user/index",
"text": "我的",
"iconPath": "static/tabs/user.png",
"selectedIconPath": "static/tabs/user-active.png"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#ffffff",
"backgroundColor": "#F8F8F8"
},
"easycom": {
"autoscan": true,
"custom": {
"^wd-(.*)": "@wot-ui/ui/components/wd-$1/wd-$1.vue"
}
}
}