index.js 359 B

12345678910111213141516171819202122232425
  1. const {
  2. globalData: {
  3. util: {
  4. api: {
  5. myCollection: url
  6. }
  7. }
  8. }
  9. } = getApp(),
  10. tab = {
  11. request: {
  12. type: 'get_auth',
  13. url
  14. },
  15. template: "collect",
  16. items: ['全部', '事项', '预约'].map((title, type) => ({ title, param: { type } }))
  17. };
  18. Page({
  19. onShow() {
  20. this.setData({
  21. tab
  22. })
  23. }
  24. })