index.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. import httputil from '../../utils/httputil';
  9. Page({
  10. data: {
  11. tab:[
  12. {
  13. name: '看',
  14. templates: 'look',
  15. img: '../../static/image/look1.png',
  16. selectimg: '../../static/image/look2.png'
  17. },
  18. {
  19. name: '搜',
  20. templates: 'search',
  21. img: '../../static/image/sou1.png',
  22. selectimg: '../../static/image/sou2.png'
  23. }, {
  24. name: '我的',
  25. templates: 'mys',
  26. img: '../../static/image/my1.png',
  27. selectimg: '../../static/image/my2.png'
  28. }
  29. ],
  30. ind: 0,
  31. templates: 'look',
  32. jurisdictionFlag: true
  33. },
  34. //tab点击
  35. switcher: function({currentTarget}) {
  36. let ind = currentTarget.dataset.ind;
  37. let templates = this.data.tab[ind].templates;
  38. //console.log(this.data[ind])
  39. this.setData({
  40. ind,
  41. templates
  42. })
  43. },
  44. jurisdiction: function () {
  45. setTimeout(()=>{
  46. this.init();
  47. },1000)
  48. },
  49. onLoad: function (options) {
  50. if(options.ind) {
  51. let ind = options.ind;
  52. let templates = this.data.tab[ind].templates;
  53. this.setData({
  54. templates,
  55. ind,
  56. })
  57. }
  58. this.init();
  59. },
  60. //初始化数据
  61. init: function () {
  62. httputil.getOpenidSessionKey((res) => {
  63. console.log('微信的用户信息', res);
  64. this.setData({
  65. jurisdictionFlag: true
  66. })
  67. lookInit(this);
  68. myInit(this);
  69. searchInit(this);
  70. },(error) => {
  71. console.log(error);
  72. this.setData({
  73. jurisdictionFlag: false
  74. })
  75. });
  76. }
  77. })