forBack.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. // pages/forBack/forBack.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. radioList:[
  8. {name: '学校不满意',type: 'school'},
  9. {name: '课程不满意',type: 'school'},
  10. {name: '产品建议/功能优化',type: 'select'},
  11. {name: '其他问题',type: 'select'},
  12. ],
  13. curRadioIndex: '-1',
  14. plateList:[
  15. '我的课表',
  16. '提交作业',
  17. '课堂点评',
  18. '成长足迹',
  19. '请假',
  20. '补课',
  21. '加课',
  22. '调课',
  23. ],
  24. plateIndex: 0,
  25. radioType: ''
  26. },
  27. getRadio:function(e){
  28. const type = this.data.radioList[e.currentTarget.dataset.index].type
  29. this.setData({
  30. curRadioIndex: e.currentTarget.dataset.index,
  31. radioType: type
  32. })
  33. },
  34. bindPickerChange: function(e) {
  35. this.setData({
  36. plateIndex: e.detail.value
  37. })
  38. },
  39. /**
  40. * 生命周期函数--监听页面加载
  41. */
  42. onLoad: function (options) {
  43. },
  44. /**
  45. * 生命周期函数--监听页面初次渲染完成
  46. */
  47. onReady: function () {
  48. },
  49. /**
  50. * 生命周期函数--监听页面显示
  51. */
  52. onShow: function () {
  53. },
  54. /**
  55. * 生命周期函数--监听页面隐藏
  56. */
  57. onHide: function () {
  58. },
  59. /**
  60. * 生命周期函数--监听页面卸载
  61. */
  62. onUnload: function () {
  63. },
  64. /**
  65. * 页面相关事件处理函数--监听用户下拉动作
  66. */
  67. onPullDownRefresh: function () {
  68. },
  69. /**
  70. * 页面上拉触底事件的处理函数
  71. */
  72. onReachBottom: function () {
  73. },
  74. /**
  75. * 用户点击右上角分享
  76. */
  77. onShareAppMessage: function () {
  78. }
  79. })