app.json 666 B

123456789101112131415161718192021222324252627
  1. {
  2. "pages":[
  3. "pages/wxml/index",
  4. "pages/index/index"
  5. ],
  6. "window":{
  7. "backgroundTextStyle":"light",
  8. "navigationBarBackgroundColor": "#fff",
  9. "navigationBarTitleText": "Wxml2Canvas",
  10. "navigationBarTextStyle":"black"
  11. },
  12. "tabBar": {
  13. "color": "#444444",
  14. "selectedColor": "#000000",
  15. "backgroundColor": "#ffffff",
  16. "borderStyle": "black",
  17. "position": "top",
  18. "list": [{
  19. "text": "wxml转canvas",
  20. "pagePath": "pages/wxml/index"
  21. }, {
  22. "text": "配置生成",
  23. "pagePath": "pages/index/index"
  24. }]
  25. }
  26. }