parent
600a02673d
commit
73dd4ed545
@ -0,0 +1 @@
|
|||||||
|
export const marster_key = ""; //to be completed
|
@ -0,0 +1,23 @@
|
|||||||
|
const AV = require('../lib/av-live-query-weapp-min');
|
||||||
|
|
||||||
|
class Class extends AV.Object{
|
||||||
|
get name(){
|
||||||
|
return this.get("name");
|
||||||
|
}
|
||||||
|
set name(value){
|
||||||
|
this.set("name", value);
|
||||||
|
}
|
||||||
|
get students(){
|
||||||
|
return this.get("students");
|
||||||
|
}
|
||||||
|
add_student(user){
|
||||||
|
this.addUnique("students", user.id);
|
||||||
|
}
|
||||||
|
del_student(user){
|
||||||
|
let students = this.get("students");
|
||||||
|
if(user.id in students){
|
||||||
|
this.remove(user.id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
const AV = require('../lib/av-live-query-weapp-min');
|
||||||
|
|
||||||
|
class Presence extends AV.Object{
|
||||||
|
set user(value){
|
||||||
|
this.set("user", value);
|
||||||
|
}
|
||||||
|
get user(){
|
||||||
|
return this.get("user");
|
||||||
|
}
|
||||||
|
set class(value){
|
||||||
|
this.set("class", value);
|
||||||
|
}
|
||||||
|
get class(){
|
||||||
|
return this.get("class");
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,66 @@
|
|||||||
|
// pages/class/class.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad: function (options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage: function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
<!--pages/class/class.wxml-->
|
||||||
|
<text>pages/class/class.wxml
|
||||||
|
界面待完成</text>
|
@ -0,0 +1 @@
|
|||||||
|
/* pages/class/class.wxss */
|
Loading…
Reference in new issue