input_content.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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. <<<<<<< HEAD
  6. const login = require('../../utils/loginSchedule.js');
  7. =======
  8. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  9. const HOST = url.apiUrl;
  10. Page({
  11. /**
  12. * 页面的初始数据
  13. */
  14. data: {
  15. tempFilePath: [],
  16. imgId: [],
  17. <<<<<<< HEAD
  18. textValue: '',
  19. type: ''
  20. =======
  21. textValue: ''
  22. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  23. },
  24. /**
  25. * 获取输入框内容
  26. */
  27. bindKeyInput: function(e) {
  28. this.setData({
  29. textValue: e.detail.value
  30. })
  31. },
  32. /**
  33. * 图片上传
  34. */
  35. uploading: function () {
  36. var that = this;
  37. wx.chooseImage({
  38. count: 2, //最多可以选择的图片总数
  39. sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
  40. sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
  41. success: function (res) {
  42. // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
  43. var tempFilePaths = res.tempFilePaths;
  44. //启动上传等待中...
  45. wx.showToast({
  46. title: '正在上传...',
  47. icon: 'loading',
  48. mask: true,
  49. duration: 1000
  50. })
  51. that.setData({
  52. tempFilePath: tempFilePaths
  53. })
  54. var uploadImgCount = 0;
  55. for (var i = 0, h = tempFilePaths.length; i < h; i++) {
  56. //上传文件
  57. wx.uploadFile({
  58. url: HOST + '/cms/file/upload',
  59. filePath: tempFilePaths[i],
  60. name: 'uploadfile_ant',
  61. header: {
  62. "Content-Type": "multipart/form-data"
  63. },
  64. success: function (res) {
  65. uploadImgCount++;
  66. let data = JSON.parse(res.data);
  67. let imgId = [];
  68. imgId.push(data.data.id)
  69. that.setData({
  70. imgId: imgId,
  71. })
  72. console.log(data);
  73. //如果是最后一张,则隐藏等待中
  74. if (uploadImgCount == tempFilePaths.length) {
  75. wx.hideToast();
  76. }
  77. },
  78. fail: function (res) {
  79. wx.hideToast();
  80. wx.showModal({
  81. title: '错误提示',
  82. content: '上传图片失败',
  83. showCancel: false,
  84. success: function (res) { }
  85. })
  86. }
  87. });
  88. }
  89. }
  90. });
  91. },
  92. //点击发送
  93. send: function() {
  94. <<<<<<< HEAD
  95. if(this.data.imgId.length == 0 && this.data.type == 2){
  96. =======
  97. let header = {
  98. uid: 'e7e0d43a-36b1-4e71-a3a3-61469c90d0a2'
  99. }
  100. if(this.data.imgId.length == 0){
  101. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  102. wx.showModal({
  103. title: '提示',
  104. content: '请上传分享的作品',
  105. success: function(res) {
  106. if (res.confirm) {
  107. console.log('用户点击确定')
  108. } else if (res.cancel) {
  109. console.log('用户点击取消')
  110. }
  111. }
  112. })
  113. return false;
  114. <<<<<<< HEAD
  115. }
  116. let data = {
  117. "title": this.data.textValue,
  118. "type": this.data.type,
  119. "columnId": "41209f14-05ba-11e8-9771-080027fcfc4b",
  120. "columnType": "6",
  121. "columnNames": "艺术",
  122. };
  123. if(this.data.type == 2){
  124. data.imagesStrList = this.data.imgId
  125. }
  126. login.getOpenidSessionKey(function(res) {
  127. //console.log(res.data.data.uid);
  128. APIClient.getSendSchedule({
  129. uid: res.data.data.uid
  130. }, data).success(res => {
  131. console.log(res)
  132. if(res.data.success) {
  133. wx.redirectTo({
  134. url: '../art/art?ind=7'
  135. })
  136. }
  137. })
  138. }, function() {
  139. wx.showModal({
  140. title: '提示',
  141. content: '需要获取您的公开信息(昵称、头像等),请从小程序列表删除小学王者班后再次扫码进入,允许授权后可正常使用',
  142. showCancel: false,
  143. success: function (res) {
  144. if (res.confirm) {
  145. console.log('用户点击确定')
  146. } else if (res.cancel) {
  147. console.log('用户点击取消')
  148. }
  149. }
  150. })
  151. });
  152. },
  153. cancel: function() {
  154. wx.navigateBack({ changed: true });
  155. },
  156. =======
  157. }
  158. let data = {
  159. "title": this.data.textValue,
  160. "userId": "e7e0d43a-36b1-4e71-a3a3-61469c90d0a2",
  161. "type": "1",
  162. "columnId": "41209f14-05ba-11e8-9771-080027fcfc4b",
  163. "columnType": "6",
  164. "columnNames": "艺术",
  165. "imagesStrList": this.data.imgId
  166. };
  167. APIClient.getSendSchedule(header, data).success(res => {
  168. console.log(res);
  169. })
  170. },
  171. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  172. /**
  173. * 图片预览
  174. */
  175. listenerButtonPreviewImage: function(e) {
  176. let index = e.target.dataset.index;
  177. let that = this;
  178. wx.previewImage({
  179. current: that.data.tempFilePath[index],
  180. urls: that.data.tempFilePath,
  181. //这根本就不走
  182. success: function(res) {
  183. //console.log(res);
  184. },
  185. //也根本不走
  186. fail: function() {
  187. //console.log('fail')
  188. }
  189. })
  190. },
  191. /**
  192. * 生命周期函数--监听页面加载
  193. */
  194. onLoad: function (options) {
  195. <<<<<<< HEAD
  196. this.setData({
  197. type: options.type
  198. })
  199. =======
  200. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  201. },
  202. /**
  203. * 生命周期函数--监听页面初次渲染完成
  204. */
  205. onReady: function () {
  206. },
  207. /**
  208. * 生命周期函数--监听页面显示
  209. */
  210. onShow: function () {
  211. },
  212. /**
  213. * 生命周期函数--监听页面隐藏
  214. */
  215. onHide: function () {
  216. },
  217. /**
  218. * 生命周期函数--监听页面卸载
  219. */
  220. onUnload: function () {
  221. },
  222. /**
  223. * 页面相关事件处理函数--监听用户下拉动作
  224. */
  225. onPullDownRefresh: function () {
  226. },
  227. /**
  228. * 页面上拉触底事件的处理函数
  229. */
  230. onReachBottom: function () {
  231. },
  232. /**
  233. * 用户点击右上角分享
  234. */
  235. onShareAppMessage: function () {
  236. }
  237. })