jinjian1.1/pages.json

78 lines
1.7 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"easycom": {
"autoscan": true,
"custom": {
/* uView */
"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
}
},
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{ //进件
"path": "pages/index/index",
"style": {
"navigationBarTitleText": " ",
"navigationBarTextStyle":"black",
"navigationBarBackgroundColor":"#ffffff",
"app-plus": {
"bounce": "none" //关闭窗口回弹效果
}
}
},
// 登录
{
"path": "pages/login/index",
"style": {
"navigationStyle": "custom",
"app-plus": {
"bounce": "none" //关闭窗口回弹效果
}
}
},
{ //我的
"path": "pages/mine/index",
"style": {
"navigationStyle": "custom",
"app-plus": {
"bounce": "none" //关闭窗口回弹效果
}
}
},
{
"path": "pages/mine/history",
"style": {
"navigationBarTitleText": "进件历史",
"app-plus": {
"bounce": "none" //关闭窗口回弹效果
}
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "进件",
"navigationBarBackgroundColor": "#f8f8f8",
"backgroundColor": "#f8f8f8"
},
"uniIdRouter": {},
"tabBar": {
"color": "#000000",
"selectedColor": "#000000",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/images/tabbar/plus.png",
"selectedIconPath": "static/images/tabbar/plus-fill.png",
"text": "进件"
},
{
"pagePath": "pages/mine/index",
"iconPath": "static/images/tabbar/home.png",
"selectedIconPath": "static/images/tabbar/home-fill.png",
"text": "我的"
}
]
}
}