2021-03-27 09:19:31 +00:00
|
|
|
// pages/my-student/my-students.js
|
2021-04-01 14:16:23 +00:00
|
|
|
import {searchStudents} from '../../api/document'
|
|
|
|
|
2021-03-27 09:19:31 +00:00
|
|
|
Page({
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 页面的初始数据
|
|
|
|
*/
|
|
|
|
data: {
|
2021-04-01 14:16:23 +00:00
|
|
|
inputShowed: false,
|
2021-04-02 16:35:01 +00:00
|
|
|
inputVal: "",
|
|
|
|
searchStudentsList: []
|
2021-03-27 09:19:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 生命周期函数--监听页面加载
|
|
|
|
*/
|
|
|
|
onLoad: function (options) {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
|
*/
|
|
|
|
onReady: function () {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 生命周期函数--监听页面显示
|
|
|
|
*/
|
|
|
|
onShow: function () {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 生命周期函数--监听页面隐藏
|
|
|
|
*/
|
|
|
|
onHide: function () {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 生命周期函数--监听页面卸载
|
|
|
|
*/
|
|
|
|
onUnload: function () {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
|
|
*/
|
|
|
|
onPullDownRefresh: function () {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 页面上拉触底事件的处理函数
|
|
|
|
*/
|
|
|
|
onReachBottom: function () {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 用户点击右上角分享
|
|
|
|
*/
|
|
|
|
onShareAppMessage: function () {
|
|
|
|
|
2021-04-01 14:16:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
showInput: function () {
|
|
|
|
this.setData({
|
|
|
|
inputShowed: true
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
hideInput: function () {
|
|
|
|
this.setData({
|
|
|
|
inputVal: "",
|
|
|
|
inputShowed: false
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
clearInput: function () {
|
|
|
|
this.setData({
|
|
|
|
inputVal: ""
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2021-04-02 16:35:01 +00:00
|
|
|
onClickShowDocument(e) {
|
|
|
|
let showIndex = e.currentTarget.dataset['index']
|
|
|
|
let userDocument = this.data.searchStudentsList[showIndex]
|
|
|
|
wx.navigateTo({
|
|
|
|
url: '../account-doc-info/account-doc-info?admin=true',
|
|
|
|
events: {
|
|
|
|
// 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
|
|
|
|
acceptDataFromOpenedPage: function(data) {
|
|
|
|
console.log(data)
|
|
|
|
},
|
|
|
|
someEvent: function(data) {
|
|
|
|
console.log(data)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
success: function(res) {
|
|
|
|
// 通过eventChannel向被打开页面传送数据
|
|
|
|
res.eventChannel.emit('acceptDataFromOpenerPage', { userDocument: userDocument })
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2021-04-01 14:16:23 +00:00
|
|
|
inputTyping: function (e) {
|
|
|
|
let inputVal = e.detail.value
|
|
|
|
this.setData({
|
|
|
|
inputVal
|
|
|
|
});
|
2021-04-10 19:43:07 +00:00
|
|
|
if(inputVal.length > 0) {
|
|
|
|
searchStudents(inputVal).then(res => {
|
|
|
|
console.log(res)
|
|
|
|
this.setData({
|
|
|
|
searchStudentsList: res
|
|
|
|
})
|
2021-04-02 16:35:01 +00:00
|
|
|
})
|
2021-04-10 19:43:07 +00:00
|
|
|
}
|
2021-03-27 09:19:31 +00:00
|
|
|
}
|
|
|
|
})
|