uni-shop-vue3/src/pages.json
2025-05-04 17:03:15 +08:00

151 lines
3.6 KiB
JSON

{
// https://uniapp.dcloud.io/collocation/pages
"easycom": {
// 是否开启自动扫描
"autoscan": true,
// 以正则方式自定义组件匹配规则
"custom": {
// uni-ui 规则如下配置
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
// 以 Jbc 开头的组件,在 components 文件夹中查找引入(需要重启服务器)
"^Jbc(.*)": "@/components/Jbc$1.vue"
}
},
// 页面路由
// pages数组中第一项表示应用启动页
"pages": [
{
"path": "pages/index/index",
// 页面样式
"style": {
"navigationStyle": "custom", // 隐藏顶部默认导航
"navigationBarTextStyle": "white",
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/category/category",
"style": {
"navigationBarTitleText": "分类"
}
},
{
"path": "pages/cart/cart",
"style": {
"navigationBarTitleText": "购物车"
}
},
{
"path": "pages/my/my",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "我的"
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/hot/hot",
"style": {
"navigationBarTitleText": "热门推荐"
}
},
{
"path": "pages/goods/goods",
"style": {
"navigationBarTitleText": "商品详情"
}
}
],
// 全局样式
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
// 设置 TabBar https://uniapp.dcloud.net.cn/collocation/pages.html#tabbar
"tabBar": {
"color": "#333",
"selectedColor": "#27BA9B",
"backgroundColor": "#fff",
"borderStyle": "white",
"spacing": "5px",
"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"
}
]
},
// 分包
"subPackages": [
{
"root": "pagesMember",
"pages": [
{
"path": "settings/settings",
"style": {
"navigationBarTitleText": "设置"
}
},
{
"path": "profile/profile",
"style": {
"navigationStyle": "custom", // 隐藏顶部默认导航
"navigationBarTextStyle": "white",
"navigationBarTitleText": "个人信息"
}
},
{
"path": "address/address",
"style": {
"navigationBarTitleText": "地址管理"
}
},
{
"path": "address/address-form",
"style": {
"navigationBarTitleText": "修改地址"
}
}
]
}
],
// 预下载
"preloadRule": {
"pages/my/my": {
"network": "all",
"packages": ["pagesMember"]
}
}
}