input_content.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. // pages/Input_content/input_content.js
  2. const app = getApp();
  3. const url = require('../../utils/const.js');
  4. const APIClient = require('../../utils/APIClient.js');
  5. const HOST = url.apiUrl;
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. tempFilePath: [],
  12. imgId: [],
  13. textValue: ''
  14. },
  15. /**
  16. * 获取输入框内容
  17. */
  18. bindKeyInput: function(e) {
  19. this.setData({
  20. textValue: e.detail.value
  21. })
  22. },
  23. /**
  24. * 图片上传
  25. */
  26. uploading: function () {
  27. var that = this;
  28. wx.chooseImage({
  29. count: 2, //最多可以选择的图片总数
  30. sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
  31. sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
  32. success: function (res) {
  33. // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
  34. var tempFilePaths = res.tempFilePaths;
  35. //启动上传等待中...
  36. wx.showToast({
  37. title: '正在上传...',
  38. icon: 'loading',
  39. mask: true,
  40. duration: 1000
  41. })
  42. that.setData({
  43. tempFilePath: tempFilePaths
  44. })
  45. var uploadImgCount = 0;
  46. for (var i = 0, h = tempFilePaths.length; i < h; i++) {
  47. //上传文件
  48. wx.uploadFile({
  49. url: HOST + '/cms/file/upload',
  50. filePath: tempFilePaths[i],
  51. name: 'uploadfile_ant',
  52. header: {
  53. "Content-Type": "multipart/form-data"
  54. },
  55. success: function (res) {
  56. uploadImgCount++;
  57. let data = JSON.parse(res.data);
  58. let imgId = [];
  59. imgId.push(data.data.id)
  60. that.setData({
  61. imgId: imgId,
  62. })
  63. console.log(data);
  64. //如果是最后一张,则隐藏等待中
  65. if (uploadImgCount == tempFilePaths.length) {
  66. wx.hideToast();
  67. }
  68. },
  69. fail: function (res) {
  70. wx.hideToast();
  71. wx.showModal({
  72. title: '错误提示',
  73. content: '上传图片失败',
  74. showCancel: false,
  75. success: function (res) { }
  76. })
  77. }
  78. });
  79. }
  80. }
  81. });
  82. },
  83. //点击发送
  84. send: function() {
  85. let header = {
  86. uid: 'e7e0d43a-36b1-4e71-a3a3-61469c90d0a2'
  87. }
  88. if(this.data.imgId.length == 0){
  89. wx.showModal({
  90. title: '提示',
  91. content: '请上传分享的作品',
  92. success: function(res) {
  93. if (res.confirm) {
  94. console.log('用户点击确定')
  95. } else if (res.cancel) {
  96. console.log('用户点击取消')
  97. }
  98. }
  99. })
  100. return false;
  101. }
  102. let data = {
  103. "title": this.data.textValue,
  104. "userId": "e7e0d43a-36b1-4e71-a3a3-61469c90d0a2",
  105. "type": "1",
  106. "columnId": "41209f14-05ba-11e8-9771-080027fcfc4b",
  107. "columnType": "6",
  108. "columnNames": "艺术",
  109. "imagesStrList": this.data.imgId
  110. };
  111. APIClient.getSendSchedule(header, data).success(res => {
  112. console.log(res);
  113. })
  114. },
  115. /**
  116. * 图片预览
  117. */
  118. listenerButtonPreviewImage: function(e) {
  119. let index = e.target.dataset.index;
  120. let that = this;
  121. wx.previewImage({
  122. current: that.data.tempFilePath[index],
  123. urls: that.data.tempFilePath,
  124. //这根本就不走
  125. success: function(res) {
  126. //console.log(res);
  127. },
  128. //也根本不走
  129. fail: function() {
  130. //console.log('fail')
  131. }
  132. })
  133. },
  134. /**
  135. * 生命周期函数--监听页面加载
  136. */
  137. onLoad: function (options) {
  138. },
  139. /**
  140. * 生命周期函数--监听页面初次渲染完成
  141. */
  142. onReady: function () {
  143. },
  144. /**
  145. * 生命周期函数--监听页面显示
  146. */
  147. onShow: function () {
  148. },
  149. /**
  150. * 生命周期函数--监听页面隐藏
  151. */
  152. onHide: function () {
  153. },
  154. /**
  155. * 生命周期函数--监听页面卸载
  156. */
  157. onUnload: function () {
  158. },
  159. /**
  160. * 页面相关事件处理函数--监听用户下拉动作
  161. */
  162. onPullDownRefresh: function () {
  163. },
  164. /**
  165. * 页面上拉触底事件的处理函数
  166. */
  167. onReachBottom: function () {
  168. },
  169. /**
  170. * 用户点击右上角分享
  171. */
  172. onShareAppMessage: function () {
  173. }
  174. })