You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
427 B

// pages/welcome/welcome.js
Page({
/** * 页面的初始数据 */
data: {
},
/* * go事件 */
go:function(){
wx.navigateTo({
url: '../Second/Second',
})
},
/* *going事件 */
going:function(){
wx.navigateTo({
url: '../Third/Third',
})
}
})