说明.txt 514 B

1234567891011121314151617181920212223242526
  1. 系统开放,需要注释或释放的代码(系统关闭,相反过程)
  2. 注释:
  3. 1. App.vue
  4. 行:5 ~ 8
  5. uni.redirectTo({
  6. url: '/pages/default/default'
  7. })
  8. return;
  9. 释放:
  10. 1. App.vue
  11. 行:11
  12. // this.accredit(options)
  13. 作为所有页面pages的最后1个页面:
  14. 1. pages.json
  15. 行:4 ~ 12
  16. {
  17. "path": "pages/default/default",
  18. "style": {
  19. "navigationBarTitleText": "公告",
  20. "enablePullDownRefresh": false,
  21. "transparentTitle": "always",
  22. "disableScroll": true
  23. }
  24. },