<view class=“name”>
<view class=“one”>{{user}}:</view>
<view class=“twe”>{{userInfo.nickName}}</view>
<view class=“clear”></view>
</view>
<view class=“name”>
<view class=“one”>{{product}}:</view>
<view class=“twe”>{{arr[0][‘title’]}}</view>
<view class=“clear”></view>
</view>
js里的:
data: {
button:“申请”,
arr: [],
userInfo: [],
tip: ‘’,
buttonDisabled: false,
modalHidden: true,
show: false
},
onLoad: function (options) {
var that = this//不要漏了这句,很重要
//调用应用实例的方法获取全局数据
app.getUserInfo(function (userInfo) {
//更新数据
that.setData({
userInfo: userInfo
})
})
//获取跳转参数
this.setData({
text: options.id
})
}
这是我的代码,没改过,出不来了。。。。