page.json.btl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // 二选一 将代码复制到page.json文件中
  2. // 不使用分包
  3. {
  4. "path": "pages/${moduleName}/${busName}/index",
  5. "style": {
  6. "navigationBarTitleText": "${functionName}管理",
  7. "enablePullDownRefresh": true,
  8. //#ifdef H5
  9. "navigationStyle": "custom"
  10. //#endif
  11. }
  12. }, {
  13. "path": "pages/${moduleName}/${busName}/form",
  14. "style": {
  15. "navigationBarTitleText": "${functionName}管理",
  16. "enablePullDownRefresh": false,
  17. //#ifdef H5
  18. "navigationStyle": "custom"
  19. //#endif
  20. }
  21. },
  22. // 使用分包(微信小程序开发主包不能超过2m,所以建议使用分包)
  23. {
  24. "root": "pages/${moduleName}/${busName}",
  25. "pages": [{
  26. "path": "index",
  27. "style": {
  28. "navigationBarTitleText": "${functionName}管理",
  29. "enablePullDownRefresh": true,
  30. //#ifdef H5
  31. "navigationStyle": "custom"
  32. //#endif
  33. }
  34. },{
  35. "path": "form",
  36. "style": {
  37. "navigationBarTitleText": "${functionName}管理",
  38. "enablePullDownRefresh": false,
  39. //#ifdef H5
  40. "navigationStyle": "custom"
  41. //#endif
  42. }
  43. }]
  44. }