You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.3 KiB
88 lines
2.3 KiB
{
|
|
// 组件自动引入规则
|
|
"easycom": {
|
|
// 是否开启自动扫描 @/components/$1/$1.vue 组件
|
|
"autoscan": true,
|
|
// 以正则方式自定义组件匹配规则
|
|
"custom": {
|
|
// uni-ui 规则如下配置
|
|
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
|
|
// 以 Xtx 开头的组件,在 components 目录中查找
|
|
"^Xtx(.*)": "@/components/Xtx$1.vue"
|
|
}
|
|
},
|
|
"pages": [
|
|
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationStyle": "custom", // 隐藏默认导航
|
|
"navigationBarTextStyle": "white",
|
|
"navigationBarTitleText": "首页"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/my/my",
|
|
"style": {
|
|
"navigationBarTitleText": "我的"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/cart/cart",
|
|
"style": {
|
|
"navigationBarTitleText": "购物车"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/category/category",
|
|
"style": {
|
|
"navigationBarTitleText": "分类"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/login",
|
|
"style": {
|
|
"navigationBarTitleText": "登录"
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
},
|
|
// 设置 TabBar
|
|
"tabBar": {
|
|
"color": "#333",
|
|
"selectedColor": "#27ba9b",
|
|
"backgroundColor": "#fff",
|
|
"borderStyle": "white",
|
|
"list": [
|
|
{
|
|
"text": "首页",
|
|
"pagePath": "pages/index/index",
|
|
"iconPath": "static/tabs/home_default.png",
|
|
"selectedIconPath": "static/tabs/home_selected.png"
|
|
},
|
|
{
|
|
"text": "分类",
|
|
"pagePath": "pages/category/category",
|
|
"iconPath": "static/tabs/category_default.png",
|
|
"selectedIconPath": "static/tabs/category_selected.png"
|
|
},
|
|
{
|
|
"text": "购物车",
|
|
"pagePath": "pages/cart/cart",
|
|
"iconPath": "static/tabs/cart_default.png",
|
|
"selectedIconPath": "static/tabs/cart_selected.png"
|
|
},
|
|
{
|
|
"text": "我的",
|
|
"pagePath": "pages/my/my",
|
|
"iconPath": "static/tabs/user_default.png",
|
|
"selectedIconPath": "static/tabs/user_selected.png"
|
|
}
|
|
]
|
|
}
|
|
}
|