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.
33 lines
495 B
33 lines
495 B
Page({
|
|
|
|
goToPageA: function() {
|
|
wx.navigateTo({
|
|
url: '/pages/Homework/Homework',
|
|
})
|
|
},
|
|
goToPageB: function() {
|
|
wx.navigateTo({
|
|
url: '/pages/Tprofile/Tprofile',
|
|
})
|
|
},
|
|
data:{
|
|
date:"",
|
|
region:"",
|
|
},
|
|
submit:function(e){
|
|
console.log(e);
|
|
},
|
|
|
|
dateChange:function(e){
|
|
this.setData({
|
|
date:e.detail.value,
|
|
});
|
|
},
|
|
regionChange:function(e){
|
|
this.setData({
|
|
region:e.detail.value,
|
|
});
|
|
},
|
|
|
|
|
|
}); |