index.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. var util = require("../../utils/util.js");
  2. Page({
  3. data : {
  4. detaildata : {},
  5. pageTitle : {},
  6. productOverview : {},
  7. productAppearance : {},
  8. productCharacteristics : {},
  9. productSpecification : {},
  10. orderingInformation : {},
  11. relatedApplications : {},
  12. installationAndUse : {},
  13. productBottom : {},
  14. },
  15. onReady () {
  16. wx.setNavigationBarTitle({
  17. title: '感应基站G23'
  18. })
  19. },
  20. onLoad (options) {
  21. var that = this,
  22. detailData = util.getmaturitySchemeG23();//产品概述
  23. that.setData({
  24. detaildata : detailData,
  25. pageTitle : detailData.pageTitle,
  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.productBottom);
  36. }
  37. })