var util = require("../../utils/util.js"); Page({ data : { detaildata : {}, pageTitleData : {}, productOverview : {}, productAppearance : {}, productCharacteristics : {}, productspecification : {}, orderingInformation : {}, relatedApplications : {}, relatedApplicationsImage : {}, productBottom : {} }, onReady () { wx.setNavigationBarTitle({ title: '移动稽查基站S22' }) }, onLoad (options) { var that = this, detailData = util.getmaturitySchemeS22();//产品概述 that.setData({ detaildata : detailData, pageTitleData : detailData.pageTitleData, productOverview : detailData.productOverview, productAppearance : detailData.productAppearance, productCharacteristics : detailData.productCharacteristics, productspecification : detailData.productspecification, orderingInformation : detailData.orderingInformation, relatedApplications : detailData.relatedApplications, relatedApplicationsImage : detailData.relatedApplicationsImage, productBottom : detailData.productBottom }); console.log(that.data); } })