index.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. wx.setStorageSync('userInfo', res)
  80. this.setData({
  81. jurisdictionFlag: true
  82. })
  83. lookInit(this);
  84. },(error) => {
  85. console.log(error);
  86. this.setData({
  87. jurisdictionFlag: false
  88. })
  89. });
  90. }
  91. })