12345678910111213141516171819202122232425262728293031323334353637 |
- var util = require("../../utils/util.js");
- Page({
- data : {
- detaildata : {}, //详情页数据
- matureScheme : {}, //成熟方案
- productOverview : {}, //产品概述
- productAppearance : {}, //产品外观
- productCharacteristics : {},//产品特点
- productSpecification : {},//产品规格
- orderingInformation : {}, //订购信息,
- relatedApplications : {}, //相关应用
- installationAndUse : {}, //安装使用
- productBottom : {} //联系我们
- },
- onReady () {
- wx.setNavigationBarTitle({
- title: '感应基站G22'
- })
- },
- onLoad (options) {
- var that = this,
- detailData = util.getmaturitySchemeG22();//产品概述
- that.setData({
- detaildata : detailData,
- matureScheme : detailData.matureScheme, //成熟方案
- productOverview : detailData.productOverview, //产品概述
- productAppearance : detailData.productAppearance, //产品外观
- productCharacteristics : detailData.productCharacteristics,//产品特点
- productSpecification : detailData.productSpecification,//产品规格
- orderingInformation : detailData.orderingInformation, //订购信息,
- relatedApplications : detailData.relatedApplications, //相关应用
- installationAndUse : detailData.installationAndUse, //安装使用
- productBottom : detailData.productBottom //联系我们
- });
- console.log(that.data.matureScheme);
- }
- })
|