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.

84 lines
2.0 KiB

const app = getApp();
5 years ago
const getDataForRender = class_ => ({
name: class_.get('name'),
objectId: class_.get('objectId')
});
Page({
options:{},
5 years ago
data: {
categories: [{ name: "所有", value: "",checked:true }, { name: "我管理的", value: "manage" }, { name:"我学习的", value:"study"}],
statuses: [{ name: "所有", value: "",checked:true}, { name:"正在进行", value:"processing"},{name:"已结束",value:"end"}],
courses: [],
loading: true,
5 years ago
},
presences: [],
5 years ago
classes: [],
onCategoryChange: function({detail:{value}}){
this.options["category"] = value;
this.setData({loading: true});
this.pull_courses(this.options);
},
onStatusChange: function ({detail: {value} }){
this.options["status"] = value;
this.setData({loading: true});
this.pull_courses(this.options);
},
show_join_course_modal: function (event) {
this.setData({ show_join_course_modal: true });
},
enter_course: function(event){
5 years ago
console.log(event);
let {id, course_name} = event.currentTarget.dataset;
5 years ago
wx.navigateTo({
url: "../course/course?course_id="+id+"&course_name="+course_name,
5 years ago
})
},
pull_courses: function({category="",status=""}={}){
app.callApi({name:"users.courses",data:{
category: category,
status: status},
complete:()=>{console.log("pull_courses complete!!!!!!");this.setData({loading:false})}
})
.then(res=>{
console.log("pull_courses");
console.log(res);
this.setData({courses: res.courses||[]});
}).catch(console.error);
console.log(this.data);
},
5 years ago
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
5 years ago
},
5 years ago
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.pull_courses(this.options);
5 years ago
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
this.pull_courses(this.options);
5 years ago
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
return app.shareApp();
5 years ago
}
})