forBack.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. // pages/forBack/forBack.js
  2. const app = getApp()
  3. const util = require("../../utils/util")
  4. const urlDef = require("../../utils/urls")
  5. const urls = urlDef.urls;
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. radioList: [{
  12. name: '学校不满意',
  13. type: 'school'
  14. },
  15. {
  16. name: '课程不满意',
  17. type: 'school'
  18. },
  19. {
  20. name: '产品建议/功能优化',
  21. type: 'select'
  22. },
  23. {
  24. name: '其他问题',
  25. type: 'select'
  26. },
  27. ],
  28. curRadioIndex: '-1',
  29. plateList: [
  30. '我的课表',
  31. '提交作业',
  32. '课堂点评',
  33. '成长足迹',
  34. '请假',
  35. '补课',
  36. '加课',
  37. '调课',
  38. ],
  39. plateIndex: 0,
  40. radioType: '',
  41. imgList:[]
  42. },
  43. getRadio: function (e) {
  44. const type = this.data.radioList[e.currentTarget.dataset.index].type
  45. this.setData({
  46. curRadioIndex: e.currentTarget.dataset.index,
  47. radioType: type
  48. })
  49. },
  50. bindPickerChange: function (e) {
  51. this.setData({
  52. plateIndex: e.detail.value
  53. })
  54. },
  55. uploadTap: function () {
  56. const that = this
  57. wx.chooseImage({
  58. count: 6,
  59. sourceType: ['album', 'camera'],
  60. success(res) {
  61. wx.showLoading({
  62. title: '上传中...',
  63. })
  64. for (var i in res.tempFilePaths) {console.log(i)
  65. wx.uploadFile({
  66. filePath: res.tempFilePaths[i],
  67. name: 'name',
  68. url: urls.file_upload,
  69. header: util.getHeaders(),
  70. success(res) {
  71. wx.showToast({
  72. title: '上传成功',
  73. })
  74. const rs = JSON.parse(JSON.parse(JSON.stringify(res.data)))
  75. const list = [{
  76. url: rs.data[0].url
  77. }]
  78. that.setData({
  79. imgList: that.data.imgList.concat(list)
  80. })
  81. },
  82. fail(res) {
  83. wx.showToast({
  84. title: '上传失败',
  85. icon: none
  86. })
  87. },
  88. complete(res) {
  89. wx.hideLoading({
  90. success: (res) => {},
  91. })
  92. }
  93. })
  94. }
  95. }
  96. })
  97. },
  98. /**
  99. * 生命周期函数--监听页面加载
  100. */
  101. onLoad: function (options) {
  102. },
  103. /**
  104. * 生命周期函数--监听页面初次渲染完成
  105. */
  106. onReady: function () {
  107. },
  108. /**
  109. * 生命周期函数--监听页面显示
  110. */
  111. onShow: function () {
  112. },
  113. /**
  114. * 生命周期函数--监听页面隐藏
  115. */
  116. onHide: function () {
  117. },
  118. /**
  119. * 生命周期函数--监听页面卸载
  120. */
  121. onUnload: function () {
  122. },
  123. /**
  124. * 页面相关事件处理函数--监听用户下拉动作
  125. */
  126. onPullDownRefresh: function () {
  127. },
  128. /**
  129. * 页面上拉触底事件的处理函数
  130. */
  131. onReachBottom: function () {
  132. },
  133. /**
  134. * 用户点击右上角分享
  135. */
  136. onShareAppMessage: function () {
  137. }
  138. })