16 lines
268 B
JavaScript
16 lines
268 B
JavaScript
Page({
|
|
data: {
|
|
userName:'',
|
|
},
|
|
onLoad: function (options) {
|
|
this.setData({
|
|
userName:options.name
|
|
})
|
|
},
|
|
|
|
toRegister(){
|
|
wx.navigateTo({url:"/pages/register/ok/index?name=" + this.data.userName})
|
|
}
|
|
|
|
});
|