index.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. //index.js
  2. var common = require('../common/common.js')
  3. //获取应用实例
  4. const app = getApp()
  5. // const host_url = "https://www.meitan.hongweisoft.com"
  6. const host_url = common.base_host
  7. Page({
  8. data: {
  9. farming:[],
  10. farming_index:0,
  11. date:'2020-05-12',
  12. base:[],
  13. base_index:0,
  14. executor:'',
  15. note:'',
  16. files: [],
  17. loading:false,
  18. showTopTips: false,
  19. phone_number:'',
  20. image_url:''
  21. },
  22. onLoad: function () {
  23. const that = this
  24. const eventChanner = this.getOpenerEventChannel()
  25. this.setData({
  26. selectFile: this.selectFile.bind(this),
  27. uplaodFile: this.uplaodFile.bind(this)
  28. })
  29. //请求农事活动列表
  30. this.request_farming()
  31. wx.getStorage({
  32. key: 'phone_number',
  33. success(res){
  34. console.log(res.data)
  35. that.setData({
  36. phone_number:res.data
  37. },function(){
  38. //请求基地数据
  39. that.request_base();
  40. })
  41. },
  42. fail(e){
  43. wx.navigateTo({
  44. url: '../login/login',
  45. });
  46. }
  47. })
  48. },
  49. onShow: function (){
  50. if(this.data.phone_number == ""){
  51. const that = this
  52. wx.getStorage({
  53. key: 'phone_number',
  54. success(res){
  55. that.setData({
  56. phone_number:res.data
  57. },function(){
  58. //请求基地数据
  59. that.request_base();
  60. })
  61. }
  62. })
  63. }
  64. },
  65. request_base: function(){
  66. if(this.data.phone_number == ""){
  67. return
  68. }
  69. const that = this
  70. wx.request({
  71. url: host_url + '/orchardacqui/orderselect',
  72. data:{phone:that.data.phone_number},
  73. success(res){
  74. let data = res.data
  75. if(data.retHead.errCode == 0){
  76. that.setData({
  77. base:data.retBody,
  78. base_index:0,
  79. executor:(data.retBody)[0].leaderName
  80. })
  81. }else{
  82. that.setData({
  83. error:"基地获取出错:" + data.retHead.errMsg
  84. })
  85. }
  86. }
  87. })
  88. },
  89. request_farming: function(){
  90. const that = this
  91. wx.request({
  92. url: host_url + '/orchardactivity/select',
  93. success(res){
  94. let data = res.data
  95. if(data.retHead.errCode == 0){
  96. that.setData({
  97. farming:data.retBody,
  98. farming_index:0
  99. })
  100. }else{
  101. that.setData({
  102. error:"农事活动列表获取出错:" + data.retHead.errMsg
  103. })
  104. }
  105. }
  106. })
  107. },
  108. bindChangePhone:function(e){
  109. wx.navigateTo({
  110. url: '../login/login',
  111. })
  112. },
  113. bindPickerChange: function(e) {
  114. console.log('farming picker发送选择改变,携带值为', e.detail.value)
  115. this.setData({
  116. farming_index: e.detail.value
  117. })
  118. },
  119. bindDateChange: function(e) {
  120. console.log('date picker发送选择改变,携带值为', e.detail.value)
  121. this.setData({
  122. date: e.detail.value
  123. })
  124. },
  125. bindBaseChange: function(e) {
  126. console.log('base picker发送选择改变,携带值为', e.detail.value)
  127. this.setData({
  128. base_index: e.detail.value,
  129. executor:this.data.base[e.detail.value].leaderName
  130. })
  131. },
  132. bindExecutor:function(e){
  133. console.log('执行人' , e.detail.value)
  134. this.data.executor = e.detail.value
  135. },
  136. bindNote: function(e){
  137. console.log('备注说明' , e.detail.value)
  138. this.data.note = e.detail.value
  139. },
  140. chooseImage: function (e) {
  141. var that = this;
  142. wx.chooseImage({
  143. sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
  144. sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
  145. success: function (res) {
  146. // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
  147. that.setData({
  148. files: that.data.files.concat(res.tempFilePaths)
  149. });
  150. }
  151. })
  152. },
  153. previewImage: function(e){
  154. wx.previewImage({
  155. current: e.currentTarget.id, // 当前显示图片的http链接
  156. urls: this.data.files // 需要预览的图片http链接列表
  157. })
  158. },
  159. selectFile(files) {
  160. console.log('files', files)
  161. // 返回false可以阻止某次文件上传
  162. },
  163. uplaodFile(files) {
  164. console.log('upload files', files)
  165. // 文件上传的函数,返回一个promise
  166. return new Promise((resolve, reject) => {
  167. wx.uploadFile({
  168. filePath: files.tempFilePaths[0],
  169. name: 'file',
  170. url: host_url + '/file/uploadDocument',
  171. success(res){
  172. const data = res.data
  173. let dataJ = JSON.parse(data)
  174. console.log('body' , dataJ.retBody)
  175. resolve({urls:[host_url + '/' + dataJ.retBody.fileUrl]})
  176. },
  177. fail(err){
  178. reject(err)
  179. }
  180. })
  181. // setTimeout(() => {
  182. // //reject('some error')
  183. // resolve({urls:['http://mmbiz.qpic.cn/mmbiz_png/VUIF3v9blLsicfV8ysC76e9fZzWgy8YJ2bQO58p43Lib8ncGXmuyibLY7O3hia8sWv25KCibQb7MbJW3Q7xibNzfRN7A/0']})
  184. // }, 1000)
  185. })
  186. },
  187. uploadError(e) {
  188. console.log('upload error', e.detail)
  189. },
  190. uploadSuccess(e) {
  191. console.log('upload success', e.detail)
  192. let pic_url = e.detail.urls[0]
  193. pic_url = pic_url.replace(host_url , "")
  194. this.setData({
  195. image_url:pic_url
  196. })
  197. },
  198. submitForm(e){
  199. console.log("上传数据" , "farming:" + this.data.farming[this.data.farming_index] + " date:" + this.data.date )
  200. const that = this
  201. //验证数据
  202. let error_msg = ""
  203. if(this.data.executor == null || this.data.executor.trim() == ""){
  204. error_msg = "执行人不能为空"
  205. }else if(this.data.phone_number == null || this.data.phone_number == ""){
  206. error_msg = "手机号不能为空"
  207. }
  208. if( error_msg != ""){
  209. this.setData({
  210. error:error_msg
  211. })
  212. return
  213. }
  214. //显示加载框
  215. this.setData({
  216. loading:true
  217. })
  218. wx.request({
  219. url: host_url + '/orchardacqui',
  220. method:"POST",
  221. header:{
  222. 'content-type': 'application/json',
  223. },
  224. data:{
  225. activityId:this.data.farming[this.data.farming_index].id,
  226. executionTime:this.data.date + " 00:00:00",
  227. tOrchardId:this.data.base[this.data.base_index].id,
  228. executionUser:this.data.executor,
  229. remarks:this.data.note,
  230. imgUrl:this.data.image_url,
  231. phone:this.data.phone_number
  232. },
  233. success(res){
  234. that.setData({
  235. loading:false
  236. })
  237. let data = res.data
  238. if(data.retHead.errCode == 0){
  239. wx.showToast({
  240. title: '提交成功',
  241. icon: 'success',
  242. duration: 2000
  243. })
  244. }else{
  245. that.setData({
  246. error:data.retHead.errMsg,
  247. })
  248. }
  249. },
  250. fail(error){
  251. that.setData({
  252. error:error.errMsg,
  253. loading:false
  254. })
  255. }
  256. })
  257. //提示
  258. }
  259. })