| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "芝麻高报系统"
- }
- }, {
- "path": "pages/predict/predict",
- "style": {
- "navigationBarTitleText": "志愿预测"
- }
- }, {
- "path": "pages/myinfo/myinfo",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/schooldetail/schooldetail",
- "style": {
- "navigationBarTitleText": "school-name"
- }
- },
- {
- "path": "pages/majorbox/majorbox",
- "style": {
- "navigationBarTitleText": "专业库"
- }
- },
- {
- "path": "pages/schoolbox/schoolbox",
- "style": {
- "navigationBarTitleText": "院校库"
- }
- },
- {
- "path": "pages/interestbox/interestbox",
- "style": {
- "navigationBarTitleText": "兴趣测评"
- }
- }
- ,{
- "path" : "pages/changeInfo/changeInfo",
- "style" : {
- "navigationBarTitleText":"个人信息"
- }
- }
- ,{
- "path" : "pages/collection/collection",
- "style" : {
- "navigationBarTitleText":"我的收藏"
- }
- }
- ,{
- "path" : "pages/yuan-xiao-ku/yuan-xiao-ku",
- "style" : {
- "navigationBarTitleText":"院校库",
- "app-plus":{
- "titleNView":{
- "searchInput":{
- "align":"left",
- "borderRadius":"25px",
- "placeholder":"搜索院校",
- "disabled":false
- }
- }
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#ffffff",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#EF3A3A",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/home_icon_default_nor.png",
- "selectedIconPath": "static/home_icon_default_sel.png",
- "text": "首页"
- }, {
- "pagePath": "pages/predict/predict",
- "iconPath": "static/home_icon_volunteer_nor.png",
- "selectedIconPath": "static/home_icon_volunteer_sel.png",
- "text": "志愿预测"
- }, {
- "pagePath": "pages/myinfo/myinfo",
- "iconPath": "static/home_icon_my_nor.png",
- "selectedIconPath": "static/Screenshot_2019-09-24.png",
- "text": "我的"
- }]
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|