change_teacher.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. // pages/change_teacher/change_teacher.js
  2. const app=getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad: function (options) {
  13. this.setData(options);
  14. },
  15. /**
  16. * 生命周期函数--监听页面初次渲染完成
  17. */
  18. onReady: function () {
  19. },
  20. /**
  21. * 生命周期函数--监听页面显示
  22. */
  23. onShow: function () {
  24. },
  25. /**
  26. * 生命周期函数--监听页面隐藏
  27. */
  28. onHide: function () {
  29. },
  30. /**
  31. * 生命周期函数--监听页面卸载
  32. */
  33. onUnload: function () {
  34. },
  35. /**
  36. * 页面相关事件处理函数--监听用户下拉动作
  37. */
  38. onPullDownRefresh: function () {
  39. },
  40. /**
  41. * 页面上拉触底事件的处理函数
  42. */
  43. onReachBottom: function () {
  44. },
  45. /**
  46. * 用户点击右上角分享
  47. */
  48. onShareAppMessage: function () {
  49. },
  50. /**
  51. * 底部导航跳转
  52. */
  53. redirectCtl: app.redirectCtl,
  54. /**
  55. * 路由跳转
  56. */
  57. navigateCtl: app.navigateCtl,
  58. // 理由
  59. textinput:function(e){
  60. const { value } = e.detail;
  61. this.setData({ reason: value})
  62. },
  63. // 换老师
  64. changeTeacher: function () {
  65. const postData = { fn: this.changeTeacher, param: { ...arguments }}
  66. const { lessonServiceId, reason } = this.data;
  67. // console.log(lessonServiceId, reason)
  68. app.post('/api/parents/parents/applyChangeTeacher', { lessonServiceId, reason }, 0, postData).then(res => {
  69. wx.showToast({
  70. title: '提交成功',
  71. icon: 'success',
  72. duration: 1000
  73. })
  74. setTimeout((function callback() {
  75. wx.navigateBack({});
  76. }).bind(this), 2000);
  77. })
  78. }
  79. })