index.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //index.js
  2. //获取应用实例
  3. const app = getApp()
  4. import { lookInit } from '../../component/look/look';
  5. import { myInit } from '../../component/mys/mys';
  6. import { searchInit } from '../../component/search/search';
  7. import httpRequestApi from '../../utils/APIRequest';
  8. Page({
  9. data: {
  10. tab:[
  11. {
  12. name: '看',
  13. templates: 'look',
  14. img: '../../static/image/look1.png',
  15. selectimg: '../../static/image/look2.png'
  16. },
  17. {
  18. name: '搜',
  19. templates: 'search',
  20. img: '../../static/image/sou1.png',
  21. selectimg: '../../static/image/sou2.png'
  22. }, {
  23. name: '我的',
  24. templates: 'mys',
  25. img: '../../static/image/my1.png',
  26. selectimg: '../../static/image/my2.png'
  27. }
  28. ],
  29. ind: 0,
  30. templates: 'look',
  31. },
  32. //tab点击
  33. switcher: function({currentTarget}) {
  34. let ind = currentTarget.dataset.ind;
  35. let templates = this.data.tab[ind].templates;
  36. //console.log(this.data[ind])
  37. this.setData({
  38. ind,
  39. templates
  40. })
  41. },
  42. onLoad: function () {
  43. lookInit(this);
  44. myInit(this);
  45. searchInit(this);
  46. },
  47. })