代码拉取完成,页面将自动刷新
同步操作将从 糖炒板栗/百年奥莱 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
// 首页
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "百年奥莱",
"navigationBarBackgroundColor": "#ffffff",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"buttons": [{
"float": "left",
"fontSrc": "./static/iconfont.ttf",
"text": "\ue651"
},
{
"float": "right",
"fontSrc": "./static/iconfont.ttf",
"text": "\ue665"
}
]
}
}
}
}, {
// 我的
"path": "pages/my/my",
"style": {
"app-plus": {
"titleNView": false,
"scrollIndicator": "none"
}
}
}, {
// 购物车
"path": "pages/shopcart/shopcart",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"app-plus": {
"titleNView": false,
"scrollIndicator": "none"
}
}
}, {
// 列表
"path": "pages/list/list",
"style": {
"navigationBarTitleText": "",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"backgroundColor": "#FFFFFF",
"searchInput": {
"align": "left",
"placeholder": "请输入关键字",
"backgroundColor": "#F7F7F7",
"borderRadius": "15px",
"placeholderColor": "#B3B3B3",
"disabled": true
}
}
}
}
}, {
// 首页搜索页面
"path": "pages/search/search",
"style": {
"navigationBarBackgroundColor": "#ffffff",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"searchInput": {
"placeholder": "nike",
"placeholderColor": "#B3B3B3",
"disabled": false,
"align": "left",
"autoFocus": true,
"backgroundColor": "#F7F7F7",
"borderRadius": "15px"
},
"buttons": [{
"type": "none",
"color": "#636263",
"text": "搜索",
"width": "45",
"fontSize": "16px",
"float": "right"
}]
}
}
}
}, {
// 搜索结果页
"path": "pages/searchList/searchList",
"style": {
"navigationBarBackgroundColor": "#ffffff",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"searchInput": {
"placeholder": "nike",
"placeholderColor": "#B3B3B3",
"disabled": false,
"align": "left",
"backgroundColor": "#F7F7F7",
"borderRadius": "15px"
},
"buttons": [{
"type": "none",
"color": "#636263",
"text": "筛选",
"width": "45",
"fontSize": "16px",
"float": "right"
}]
}
}
}
}, {
// 商品详情页
"path": "pages/details/details",
"style": {
"navigationBarTitleText": "商品详情",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"type": "transparent",
"buttons": [{
"type": "menu"
},
{
"type": "share"
}
]
}
}
}
}
// 设置页面
, {
"path": "pages/my-config/my-config",
"style": {
"navigationBarTitleText": "设置",
"enablePullDownRefresh": false
}
}
// 地址管理
, {
"path": "pages/my-path-list/my-path-list",
"style": {
"navigationBarTitleText": "地址管理",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"buttons": [{
"float": "right",
"color": "#636263",
"text": "编辑",
"fontSize": "16px",
"width": "60px"
}]
}
}
}
}
// 新增地址
, {
"path": "pages/my-add-path/my-add-path",
"style": {
"navigationBarTitleText": "新增地址",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"buttons": [{
"float": "right",
"color": "#636263",
"text": "保存",
"fontSize": "16px",
"width": "60px"
}]
}
}
}
}
// 我的订单
, {
"path": "pages/my-order/my-order",
"style": {
"navigationBarTitleText": "购买订单",
"app-plus": {
"scrollIndicator": "none",
"titleNView": {
"buttons": [{
"float": "right",
"color": "#636263",
"text": "· · ·",
"fontSize": "16px",
"width": "60px"
}]
}
}
}
}
// 确认订单页面
, {
"path": "pages/confirm/confirm",
"style": {
"navigationBarTitleText": "确认订单"
}
}
// 支付页面
, {
"path": "pages/payment/payment",
"style": {
"navigationBarTitleText": "确认支付",
"enablePullDownRefresh": false
}
}
// 支付成功页面
, {
"path": "pages/payment-success/payment-success",
"style": {
"navigationBarTitleText": "支付成功",
"enablePullDownRefresh": false
}
},
// 登录注册页
{
"path": "pages/login/login",
"style": {
"app-plus": {
"titleNView": false,
"scrollIndicator": "none"
}
}
}
// 手机号注册页面
,{
"path" : "pages/login-tel/login-tel",
"style" :
{
"navigationBarTitleText": "输入手机号",
"enablePullDownRefresh": false
}
}
// 验证码页面
,{
"path" : "pages/login-code/login-code",
"style" :
{
"navigationBarTitleText": "输入验证码",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
// "tabBar": {
// "color": "#636263",
// "selectedColor": "#636263",
// "borderStyle": "black",
// "backgroundColor": "#ffffff",
// "spacing": "8px",
// "list": [{
// // 首页
// "pagePath": "pages/index/index",
// "text": "首页",
// "iconPath": "static/tabbar/index.png",
// "selectedIconPath": "static/tabbar/indexSelected.png"
// }, {
// // 列表页
// "pagePath": "pages/list/list",
// "text": "分类",
// "iconPath": "static/tabbar/list.png",
// "selectedIconPath": "static/tabbar/listSelected.png"
// }, {
// // 购物车页
// "pagePath": "pages/shopcart/shopcart",
// "text": "购物车",
// "iconPath": "static/tabbar/shop.png",
// "selectedIconPath": "static/tabbar/shopSelected.png"
// }, {
// // 我的页
// "pagePath": "pages/my/my",
// "text": "我的",
// "iconPath": "static/tabbar/my.png",
// "selectedIconPath": "static/tabbar/mySelected.png"
// }]
// }
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。