// pages/chengjiliebiao.js Page({ /** * 页面的初始数据 */ data: { st_id:'', id:[], classes:[], s_id:[], name:[], dormitory:[], phone :[], reason:[], l_time:[], b_time:[], place:[], p_phone:[], what:[], status:[] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { wx.request({ url: 'http://127.0.0.1:80/teacher_get_leave_school/', method:'POST', header: { 'content-type': 'application/json' , 'classes':'2011502', }, success:(res)=>{ this.setData(res.data.data) } }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, detailed:function(e){ var id = e.currentTarget.dataset.id var what =e.currentTarget.dataset.what if (what == " 离校"){ wx.redirectTo({ url: '../shenpijiaqixiangqing/shenpijiaqixiangqing?id='+id, }) }else{ wx.redirectTo({ url: '../shenpiqingjiaxiangqing/shenpiqingjiaxiangqing?id='+id, }) } }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })