app.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/logs/logs",
  5. "pages/bookshelf/bookshelf",
  6. "pages/benefit/benefit",
  7. "pages/category/category",
  8. "pages/mine/mine",
  9. "pages/book/list",
  10. "pages/search/search",
  11. "components/charge-dialog/charge-dialog"
  12. ],
  13. "window": {
  14. "navigationStyle": "custom",
  15. "backgroundColor": "#f6f6f6",
  16. "backgroundTextStyle": "light",
  17. "navigationBarBackgroundColor": "#fff",
  18. "navigationBarTitleText": "WeChat",
  19. "navigationBarTextStyle": "black"
  20. },
  21. "usingComponents": {
  22. "charge-dialog": "/components/charge-dialog/charge-dialog"
  23. },
  24. "plugins": {
  25. "novel-plugin": {
  26. "version": "latest",
  27. "provider": "wx293c4b6097a8a4d0",
  28. "genericsImplementation": {
  29. "novel": {
  30. "charge-dialog": "/components/charge-dialog/charge-dialog"
  31. }
  32. }
  33. }
  34. },
  35. "tabBar": {
  36. "color": "#999",
  37. "selectedColor": "#ff6b6b",
  38. "backgroundColor": "#fff",
  39. "borderStyle": "black",
  40. "list": [
  41. {
  42. "pagePath": "pages/index/index",
  43. "text": "书城",
  44. "iconPath": "assets/images/tabs/tab-store.png",
  45. "selectedIconPath": "assets/images/tabs/tab-store_active.png"
  46. },
  47. {
  48. "pagePath": "pages/bookshelf/bookshelf",
  49. "text": "书架",
  50. "iconPath": "assets/images/tabs/tab-bookshelf.png",
  51. "selectedIconPath": "assets/images/tabs/tab-bookshelf_active.png"
  52. },
  53. {
  54. "pagePath": "pages/category/category",
  55. "text": "分类",
  56. "iconPath": "assets/images/tabs/tab-category.png",
  57. "selectedIconPath": "assets/images/tabs/tab-category_active.png"
  58. },
  59. {
  60. "pagePath": "pages/mine/mine",
  61. "text": "我的",
  62. "iconPath": "assets/images/tabs/tab-mine.png",
  63. "selectedIconPath": "assets/images/tabs/tab-mine_active.png"
  64. }
  65. ]
  66. },
  67. "style": "v2",
  68. "componentFramework": "glass-easel",
  69. "sitemapLocation": "sitemap.json",
  70. "lazyCodeLoading": "requiredComponents"
  71. }