index.js 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. var util = require("../../utils/util.js");
  2. Page({
  3. data : {
  4. detaildata : {},
  5. productCharacteristics : {},
  6. productOverview : {},
  7. productAppearance : {},
  8. descriptionOfFunctionalCharacteristics : {},
  9. relatedApplications : {},
  10. relatedApplicationsImage : {},
  11. productBottom : {},
  12. },
  13. onReady () {
  14. wx.setNavigationBarTitle({
  15. title: '校园考勤机K20'
  16. })
  17. },
  18. onLoad (options) {
  19. var that = this,
  20. detailData = util.getmaturitySchemeK20();//产品概述
  21. that.setData({
  22. detaildata : detailData,
  23. productCharacteristics : detailData.productCharacteristics,
  24. productOverview : detailData.productOverview,
  25. productAppearance : detailData.productAppearance,
  26. descriptionOfFunctionalCharacteristics : detailData.descriptionOfFunctionalCharacteristics,
  27. relatedApplications : detailData.relatedApplications,
  28. relatedApplicationsImage : detailData.relatedApplicationsImage,
  29. productBottom : detailData.productBottom,
  30. });
  31. }
  32. })