index.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.return && options.ind) {
  51. this.setData({
  52. templates: options.return,
  53. ind: options.ind
  54. })
  55. }
  56. this.init();
  57. },
  58. //初始化数据
  59. init: function () {
  60. httputil.getOpenidSessionKey((res) => {
  61. console.log('微信的用户信息', res);
  62. this.setData({
  63. jurisdictionFlag: true
  64. })
  65. lookInit(this);
  66. myInit(this);
  67. searchInit(this);
  68. },(error) => {
  69. console.log(error);
  70. this.setData({
  71. jurisdictionFlag: false
  72. })
  73. });
  74. }
  75. })