index.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. var util = require("../../utils/util.js");
  2. Page({
  3. data : {
  4. detaildata : {}, //详情页数据
  5. matureScheme : {}, //F22B成熟方案
  6. productOverview : {}, //产品概述
  7. productAppearance : {}, //产品外观
  8. productCharacteristics : {}, //产品特点
  9. productSpecification : {}, //产品规格
  10. orderingInformation : {}, //订购信息
  11. relatedApplications : {}, //相关应用
  12. installationAndUse : {}, //安装使用
  13. productBottom : {} //底部图片
  14. },
  15. onReady () {
  16. wx.setNavigationBarTitle({
  17. title: 'F22B产品规格书'
  18. })
  19. },
  20. onLoad (options) {
  21. var that = this,
  22. detailData = util.getmaturitySchemeF22B();//产品概述
  23. that.setData({
  24. detaildata : detailData,
  25. matureScheme : detailData.matureScheme,
  26. productOverview : detailData.productOverview,
  27. productAppearance : detailData.productAppearance,
  28. productCharacteristics : detailData.productCharacteristics,
  29. productSpecification : detailData.productSpecification,
  30. orderingInformation : detailData.orderingInformation,
  31. relatedApplications : detailData.relatedApplications,
  32. installationAndUse : detailData.installationAndUse,
  33. productBottom : detailData.productBottom
  34. });
  35. console.log(that.data.productSpecification.array);
  36. }
  37. })