1 Star 0 Fork 2

JasonJia123/通用刷题-uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 5.41 KB
一键复制 编辑 原始数据 按行查看 历史
下次一定 提交于 2024-10-07 10:16 . 1
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"navigationBarTextStyle": "white",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/article/article",
"style": {
"navigationBarTitleText": "百科",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/bd/bd",
"style": {
"navigationBarTitleText": "榜单",
"navigationBarTextStyle": "white",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/user/user",
"style": {
"navigationBarTitleText": "我的",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/topic/topic",
"style": {
"navigationBarTitleText": "题目",
"backgroundColor": "#FAFAFD",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/testPaper/result",
"style": {
"navigationBarTitleText": "考试结果",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/topic/category",
"style": {
"navigationBarTitleText": "分类",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path": "pages/tag/tag",
"style": {
"navigationBarTitleText": "单页",
"navigationBarBackgroundColor": "#fff",
"backgroundColor": "#fff"
}
},
{
"path": "pages/testPaper/list",
"style": {
"navigationBarTitleText": "试卷",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path": "pages/article/detail",
"style": {
"navigationBarTitleText": "文章详情"
}
},
{
"path": "pages/testPaper/record",
"style": {
"navigationBarTitleText": "考试记录",
"navigationBarBackgroundColor": "#ffffff"
}
},
{
"path": "pages/address/index",
"style": {
"navigationBarTitleText": "地址管理",
"navigationBarBackgroundColor": "#ffffff"
}
},
{
"path": "pages/address/form",
"style": {
"navigationBarTitleText": "地址编辑"
}
},
{
"path": "pages/shop/goods",
"style": {
"navigationBarTitleText": "积分商城",
"navigationBarTextStyle": "white",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path" : "pages/order/index",
"style" :
{
"navigationBarTitleText" : "订单",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path" : "pages/topic/search",
"style" :
{
"navigationBarTitleText" : "搜索",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path" : "pages/moments/moments",
"style" :
{
"navigationBarTitleText" : "动态",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path" : "pages/moments/form",
"style" :
{
"navigationBarTitleText" : "发布动态",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path" : "pages/package/package",
"style" :
{
"navigationBarTitleText" : "",
// #ifndef MP-TOUTIAO
"navigationStyle": "custom"
// #endif
}
},
{
"path" : "pages/package/order",
"style" :
{
"navigationBarTitleText" : "购买记录"
}
},
{
"path" : "pages/user/achieve",
"style" :
{
"navigationBarTitleText" : "勋章列表"
}
},
{
"path" : "pages/user/feedback",
"style" :
{
"navigationBarTitleText" : "意见反馈",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path" : "pages/user/fdrecord",
"style" :
{
"navigationBarTitleText" : "错题反馈记录",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path" : "pages/moments/detail",
"style" :
{
"navigationBarTitleText" : "动态详情",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path" : "pages/user/detail",
"style" :
{
"navigationBarTitleText" : "修改资料",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path" : "pages/user/sign",
"style" :
{
"navigationBarTitleText" : "签到"
}
},
{
"path" : "pages/user/cert",
"style" :
{
"navigationBarTitleText" : "我的证书",
"navigationBarBackgroundColor": "#fff"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#FAFAFD",
"backgroundColor": "#FAFAFD"
},
"tabBar": {
"selectedColor": "#3D5CFF",
"color": "#171A1D",
"list": [{
"iconPath": "static/tabs/index.png",
"selectedIconPath": "static/tabs/index_s.png",
"text": "首页",
"pagePath": "pages/index/index"
},
{
"iconPath": "static/tabs/zx.png",
"selectedIconPath": "static/tabs/zx_s.png",
"text": "百科",
"pagePath": "pages/article/article"
},
{
"iconPath": "static/tabs/dt.png",
"selectedIconPath": "static/tabs/dt_s.png",
"text": "动态",
"pagePath": "pages/moments/moments"
},
{
"iconPath": "static/tabs/bd.png",
"selectedIconPath": "static/tabs/bd_s.png",
"text": "榜单",
"pagePath": "pages/bd/bd"
},
{
"iconPath": "static/tabs/user.png",
"selectedIconPath": "static/tabs/user_s.png",
"text": "我的",
"pagePath": "pages/user/user"
}
]
},
"uniIdRouter": {}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jasonjia123/general-answer-questions-uniapp.git
git@gitee.com:jasonjia123/general-answer-questions-uniapp.git
jasonjia123
general-answer-questions-uniapp
通用刷题-uniapp
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385