feat:first commit

This commit is contained in:
2024-08-16 14:04:26 +08:00
commit f276677d09
72 changed files with 33361 additions and 0 deletions

92
src/pages.json Normal file
View File

@@ -0,0 +1,92 @@
{
"easycom": {
"autoscan": true,
"custom": {
// uni-ui 规则如下配置
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
}
},
"pages": [
//pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/index",
"name": "loginIndex",
"style": {
"navigationBarTitleText": "登录",
"navigationStyle": "custom",
"disableScroll": true,
"app-plus": {
"titleNView": false
}
}
},
{
"path": "pages/index/index",
"name": "index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom",
"disableScroll": false,
"app-plus": {
"titleNView": false
}
}
},
{
"path": "pages/mine/index",
"name": "mine",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
"navigationStyle": "custom",
"app-plus": {
"titleNView": false
}
}
},
{
"path": "pages/404",
"name": "404",
"style": {
"navigationBarTitleText": "404",
"enablePullDownRefresh": false,
"app-plus": {}
}
},
{
"path": "pages/webView/index",
"style": {
"app-plus": {
"titleNView": ""
}
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#F8F8F8",
"rpxCalcMaxDeviceWidth": 960,
// rpx 计算所支持的最大设备宽度,单位 px默认值为 960
"rpxCalcBaseDeviceWidth": 375,
// rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px默认值为 375
"rpxCalcIncludeWidth": 750
// rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx默认值为 750
},
"tabBar": {
"custom": true,
"color": "#999AAA",
"selectedColor": "#333444",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index"
},
{
"pagePath": "pages/mine/index"
}
]
}
}