xunfeiAI/pages.json

28 lines
843 B
JSON
Raw Normal View History

2023-09-12 20:19:08 +08:00
{
2023-09-14 16:23:08 +08:00
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
2023-09-12 20:19:08 +08:00
{
2023-09-14 16:23:08 +08:00
"path": "pages/index/index",
"style": {
2023-09-25 19:13:07 +08:00
"navigationBarTitleText": "农业咨询",
2023-10-14 21:28:00 +08:00
"navigationStyle": "custom",
2023-09-19 18:19:39 +08:00
"bounce": "none"
// "softinputMode": "adjustResize"
2023-09-14 16:23:08 +08:00
}
2023-09-12 20:19:08 +08:00
}
2023-09-14 16:23:08 +08:00
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "人工智能",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数在页面的onLoad函数里面得到
}]
}
}