detail.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. },
  16. onReady () {
  17. wx.setNavigationBarTitle({
  18. title: '智能学生卡C21'
  19. })
  20. },
  21. onLoad (options) {
  22. var that = this,
  23. detailData = util.getproductC21();//产品概述
  24. that.setData({
  25. detaildata : detailData,
  26. productOverview : detailData.productOverview,
  27. productAppearance : detailData.productAppearance,
  28. productCharacteristics : detailData.productCharacteristics,
  29. productSpecification : detailData.productSpecification,
  30. relatedProducts : detailData.relatedProducts,
  31. relatedApplications : detailData.relatedApplications,
  32. relatedBottomArray : detailData.relatedBottomArray,
  33. relatedBottomImageArray : detailData.relatedBottomImageArray
  34. });
  35. console.log(that.data.relatedBottomArray);
  36. }
  37. })