企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## demo [TOC] ### app.xxx #### app.json ##### 具體頁面個數 ``` { "pages": [ "pages/welcome/welcome", "pages/index/index", "pages/map/map", "pages/index/index-detail/index-detail" ], >歡迎頁、index、地圖、index-detail ``` ##### 分頁欄 ``` "tabBar": { "color": "#405f80", "selectedColor": "#405f80", "backgroundColor": "#b3d4db", "borderStyle": "#405f80", "list": [ { "pagePath": "pages/index/index", "text": "推送", "iconPath": "images/icon-font/new.png", "selectedIconPath": "images/icon-font/new_sel.png" }, { "pagePath": "pages/map/map", "text": "地图", "iconPath": "images/icon-font/map.png", "selectedIconPath": "images/icon-font/map_sel.png" } ] }, ``` ##### 頁面基礎設置 ``` "window": { "navigationBarBackgroundColor": "#b3d4db", "navigationBarTextStyle": "white", "navigationBarTitleText": "小程序", "backgroundColor": "#405f80", "backgroundTextStyle": "light", "enablePullDownRefresh": true } } ``` ***** #### app.js ``` App({ globalData:{ g_isPlay:false, g_currentId:null } }) ``` >定義全局要使用的變量g_isPlay和g_currentId用以監測音樂播放狀態和頁面當前id ***** *****