detail.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. var util = require("../../utils/util.js");
  2. Page({
  3. data : {
  4. art : {},
  5. body : "",
  6. detaildata : {}, //详情页数据
  7. productOverview : {}, //产品概述
  8. productAppearance : {}, //产品外观
  9. productCharacteristics : {}, //产品特点
  10. productSpecification : {}, //产品规格
  11. relatedProducts : {}, //4G无感知考勤系统相关产品
  12. relatedApplications : {}, //ul li
  13. relatedBottomArray : {}, //底部图片加介绍
  14. relatedBottomImageArray : {}, //底部纯图片
  15. productBottom : {}
  16. },
  17. onReady () {
  18. wx.setNavigationBarTitle({
  19. title: '智能学生卡C21'
  20. })
  21. },
  22. onLoad (options) {
  23. var that = this,
  24. detailData = util.getproductC21();//产品概述
  25. that.setData({
  26. detaildata : detailData,
  27. productOverview : detailData.productOverview,
  28. productAppearance : detailData.productAppearance,
  29. productCharacteristics : detailData.productCharacteristics,
  30. productSpecification : detailData.productSpecification,
  31. relatedProducts : detailData.relatedProducts,
  32. relatedApplications : detailData.relatedApplications,
  33. relatedBottomArray : detailData.relatedBottomArray,
  34. relatedBottomImageArray : detailData.relatedBottomImageArray,
  35. productBottom : detailData.productBottom
  36. });
  37. console.log(that.data.relatedBottomArray);
  38. }
  39. })