index.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. if (ind == 1) {
  44. searchInit(this);
  45. }
  46. if (ind == 2) {
  47. myInit(this);
  48. }
  49. },
  50. jurisdiction: function () {
  51. setTimeout(()=>{
  52. this.init();
  53. },1000)
  54. },
  55. onLoad: function (options) {
  56. if (options.id) {
  57. wx.setStorageSync('uid', options.uid);
  58. }
  59. if(options.ind) {
  60. let ind = options.ind;
  61. let templates = this.data.tab[ind].templates;
  62. this.setData({
  63. templates,
  64. ind,
  65. })
  66. if (ind == 1) {
  67. searchInit(this);
  68. }
  69. if (ind == 2) {
  70. myInit(this);
  71. }
  72. }
  73. this.init();
  74. },
  75. //初始化数据
  76. init: function (uid) {
  77. httputil.getOpenidSessionKey((res) => {
  78. console.log('微信的用户信息', res);
  79. this.setData({
  80. jurisdictionFlag: true
  81. })
  82. lookInit(this);
  83. },(error) => {
  84. console.log(error);
  85. this.setData({
  86. jurisdictionFlag: false
  87. })
  88. });
  89. }
  90. })