| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- {
- // "leftWindow" : {
- // "path" : "windows/left-window.vue",
- // "style" : {
- // "width" : "350px"
- // }
- // },
- // "topWindow" : {
- // "path" : "windows/top-window.vue",
- // "style" : {
- // "height" : "60px"
- // }
- // },
- "pages" : [
- {
- "path" : "pages/ai/main/main",
- "style": {
- "usingComponents": {
- // #ifdef MP-WEIXIN
- "towxml": "/static/towxml/towxml"
- // #endif
- }
- }
- },
- {
- "path" : "pages/ai/chat/chat",
- //
- "style": {
- "usingComponents": {
- // #ifdef MP-WEIXIN
- "towxml": "/static/towxml/towxml"
- // #endif
- }
- }
- },
- {
- "path" : "pages/ai/share/share",
- "style": {
- "usingComponents": {
- // #ifdef MP-WEIXIN
- "towxml": "/static/towxml/towxml"
- // #endif
- }
- }
- },
- {
- "path" : "pages/ai/share/drawshare",
- "style": {
- "usingComponents": {
- // #ifdef MP-WEIXIN
- "towxml": "/static/towxml/towxml"
- // #endif
- }
- }
- },
- {
- "path": "pages/explore/explore"
- },
- {
- "path": "pages/webpage/webpage"
- },
- {
- "path": "pages/about/about",
- "style": {
- "backgroundColor": "#33373f",
- "backgroundTextStyle": "dark",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/about/vip/vip",
- "style" :
- {
- "navigationBarTitleText": "会员充值",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/about/orderlist/orderlist",
- "style" :
- {
- "navigationBarTitleText": "订单列表",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/ai/draw/draw",
- "style" :
- {
- "navigationBarTitleText": "AI降临派 - 绘画",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/about/versions/versions",
- "style" :
- {
- "navigationBarTitleText": "版本历史",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "subPackages" : [],
- "globalStyle" : {
- "pageOrientation" : "portrait",
- "navigationBarTitleText" : "AI 降临派",
- "navigationBarTextStyle" : "white",
- "navigationBarBackgroundColor" : "#33373f",
- "backgroundColor" : "#33373f",
- "backgroundColorTop" : "#33373f",
- "backgroundColorBottom" : "#33373f",
- "mp-360" : {
- "navigationStyle" : "custom"
- },
- "h5" : {
- "maxWidth" : 1190,
- "navigationBarTextStyle" : "black",
- "navigationBarBackgroundColor" : "#33373f"
- }
- },
- "tabBar": {
- "color": "#dedede",
- "selectedColor": "#23a27e",
- "borderStyle": "black",
- "backgroundColor": "#33373f",
- "iconWidth": "18px",
- "iconfontSrc":"/static/icon/iconfont.ttf", // app tabbar 字体.ttf文件路径 app 3.4.4+
- "list": [
- {
- "pagePath": "pages/ai/main/main",
- "iconPath": "/static/ai/home.png",
- "selectedIconPath": "/static/ai/home_selected.png",
- "text": "首页"
- // "iconfont": { // 优先级高于 iconPath,该属性依赖 tabbar 根节点的 iconfontSrc
- // "text": "\ue6bb",
- // "selectedText": "\ue6bb;",
- // "fontSize": "16px",
- // "color": "#FFFFFF",
- // "selectedColor": "#23a27e"
- // }
- },
- {
- "pagePath": "pages/explore/explore",
- "text": "探索",
- "iconPath": "/static/ai/explore.png",
- "selectedIconPath": "/static/ai/explore_selected.png"
- // "iconfont": { // 优先级高于 iconPath,该属性依赖 tabbar 根节点的 iconfontSrc
- // "text": "\ue64b",
- // "selectedText": "\ue64b;",
- // "fontSize": "16px",
- // "color": "#FFFFFF",
- // "selectedColor": "#23a27e"
- // }
- },
- {
- "pagePath": "pages/about/about",
- "text": "我的",
- "iconPath": "/static/ai/aboutme.png",
- "selectedIconPath": "/static/ai/aboutme_selected.png"
- // "iconfont": { // 优先级高于 iconPath,该属性依赖 tabbar 根节点的 iconfontSrc
- // "text": "\ue6bb",
- // "selectedText": "\ue6bb;",
- // "fontSize": "16px",
- // "color": "#FFFFFF",
- // "selectedColor": "#23a27e"
- // }
- }]
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 1, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "画图分享进入", //模式名称
- "path": "pages/ai/share/drawshare", //启动页面,必选
- "query": "uid=3&sid=5975" //启动参数,在页面的onLoad函数里面得到
- },
- {
- "name": "分享进入", //模式名称
- "path": "pages/ai/share/share", //启动页面,必选
- "query": "uid=3&sid=1431" //启动参数,在页面的onLoad函数里面得到
- },
- {
- "name": "我的",
- "path": "pages/about/about"//启动页面,必选
- }
- ]
- }
- }
|