confirm-order.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. const date = new Date()
  2. const app = getApp()
  3. // const years = []
  4. // const year = date.getFullYear()
  5. const months = []
  6. const days = []
  7. const hours = []
  8. // for (let i = 1990; i <= year; i++) {
  9. // years.push(i)
  10. // }
  11. for (let i = 1; i <= 12; i++) {
  12. months.push(i)
  13. }
  14. for (let i = 1; i <= 31; i++) {
  15. days.push(i)
  16. }
  17. for (let i = 0; i <= 22; i += 2) {
  18. const toStr = num => num < 10 ? '0' + num : num;
  19. hours.push(`${toStr(i)}:00-${toStr(i+2)}:00`);
  20. }
  21. Page({
  22. /**
  23. * 页面的初始数据
  24. */
  25. data: {
  26. //照片
  27. imgList: ['../../images/icon-16.png', '../../images/icon-16.png'],
  28. imgListMaxLength: 9,
  29. // 选择时间
  30. // years,
  31. // year,
  32. months,
  33. month: 1,
  34. days,
  35. day: 1,
  36. hours,
  37. hour: '',
  38. value: [0, 0, 0],
  39. selectTime: `1月1日 00:00-02:00`,
  40. isShowSelectTime: false,
  41. id: 0,
  42. info: {},
  43. data: {
  44. requirement_title: '',
  45. detailed_requirements: '',
  46. demand_picture: [],
  47. user_name: '',
  48. phone: '',
  49. budget_time: '01-01 00:00-02:00',
  50. code: '',
  51. email: ''
  52. },
  53. config: {},
  54. time: 60,
  55. lock_code: false,
  56. btn_desc: '获取验证码'
  57. },
  58. /**
  59. * 生命周期函数--监听页面加载
  60. */
  61. onLoad: function (options) {
  62. this.setData({
  63. id: options.id
  64. })
  65. this.getServiceDetail()
  66. this.getUploadConfig()
  67. },
  68. /**
  69. * 发送验证码
  70. */
  71. sendCode: function () {
  72. let page = this, mobile = page.data.data.phone, lock_code = page.data.lock_code
  73. if (!/^1[3456789]\d{9}$/.test(mobile)) {
  74. wx.showToast({
  75. title: '请输入正确格式的手机号',
  76. icon: 'none'
  77. })
  78. return
  79. }
  80. if (lock_code) {
  81. return
  82. }
  83. app.api.senSmsCode ({phone: mobile}, function (res) {
  84. if (res.code > 0) {
  85. wx.showToast({
  86. title: res.msg,
  87. })
  88. page.timeOut()
  89. } else {
  90. wx.showToast({
  91. title: res.msg,
  92. icon: 'none'
  93. })
  94. }
  95. })
  96. },
  97. /**
  98. * 倒计时
  99. */
  100. timeOut: function () {
  101. let page = this, time = page.data.time
  102. if (time > 1) {
  103. time--
  104. page.setData({
  105. lock_code: true,
  106. time: time,
  107. btn_desc: 'wait '+time+' s'
  108. })
  109. page.timeOutSingle = setTimeout (function () {
  110. page.timeOut()
  111. },1000)
  112. } else {
  113. page.setData({
  114. lock_code: false,
  115. time: 60,
  116. btn_desc: '获取验证码'
  117. })
  118. clearTimeout(page.timeOutSingle)
  119. }
  120. },
  121. /**
  122. * 文本框输入
  123. */
  124. setInputValue : function (e) {
  125. let page = this, name = e.currentTarget.dataset.name, value = e.detail.value, data = page.data.data
  126. data[name] = value
  127. page.setData({
  128. data: data
  129. })
  130. },
  131. /**
  132. * 获取上传配置
  133. */
  134. getUploadConfig: function () {
  135. let page = this
  136. app.api.getUploadConfig("", function (res) {
  137. if (res.code > 0) {
  138. page.setData({
  139. config: res.data
  140. })
  141. }
  142. })
  143. },
  144. /**
  145. * 上传照片
  146. */
  147. selectImages() {
  148. let page = this, max = page.data.imgListMaxLength, data = page.data.data, numberAble = max - data.demand_picture.length, config = page.data.config
  149. if (numberAble <= 0) {
  150. wx.showToast({
  151. title: '最多只能上传'+max+'图片',
  152. icon: 'none'
  153. })
  154. return
  155. }
  156. if (!config.hasOwnProperty('policy')) {
  157. wx.showToast({
  158. title: '上传配置错误',
  159. icon: 'none'
  160. })
  161. return
  162. }
  163. wx.chooseImage({
  164. count: numberAble,
  165. sizeType: ['original', 'compressed'],
  166. sourceType: ['album', 'camera'],
  167. success(res) {
  168. let tempFilePaths = res.tempFilePaths;
  169. for (let item of tempFilePaths) {
  170. wx.showLoading({
  171. title: '上传中...',
  172. icon: 'loading',
  173. mask: true
  174. })
  175. let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png'
  176. wx.uploadFile({
  177. url: config.host,
  178. filePath: item,
  179. name: 'file',
  180. formData: {
  181. key: key,
  182. policy: config.policy, // 输入你获取的的policy
  183. OSSAccessKeyId: config.OSSAccessKeyId, // 输入你的AccessKeyId
  184. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  185. signature: config.Signature, // 输入你获取的的signature
  186. },
  187. success(res) {
  188. wx.hideLoading();
  189. if (res.statusCode == 200) {
  190. data.demand_picture.push(config.host + '/' + key)
  191. page.setData({
  192. data: data
  193. })
  194. }
  195. }
  196. })
  197. }
  198. },
  199. fail(res) {
  200. wx.showToast({
  201. title: '选择图片失败',
  202. icon: 'none'
  203. })
  204. }
  205. })
  206. },
  207. /**
  208. * 删除指定图片
  209. */
  210. removeImg(e) {
  211. let page = this, data = page.data.data, imgList = data.demand_picture ,currentIndex = e.target.dataset.index;
  212. let newImgList = imgList.filter((data, index) => index !== currentIndex);
  213. data.demand_picture = newImgList
  214. this.setData({
  215. data: data
  216. })
  217. },
  218. // 触发选择时间
  219. bindSelectTimeChange(e) {
  220. const val = e.detail.value;
  221. this.setData({
  222. // year: this.data.year,
  223. month: this.data.months[val[0]],
  224. day: this.data.days[val[1]],
  225. hour: this.data.hours[val[2]],
  226. value: val,
  227. });
  228. },
  229. // 显示选择时间
  230. showSelectTime() {
  231. this.setData({
  232. isShowSelectTime: true,
  233. });
  234. },
  235. // 取消选择时间
  236. hideSelectTime() {
  237. this.setData({
  238. isShowSelectTime: false,
  239. });
  240. },
  241. // 确定选择时间
  242. confirmSelectTime() {
  243. let page = this, data = page.data.data
  244. const {
  245. // year,
  246. month,
  247. day,
  248. hour
  249. } = this.data;
  250. data.budget_time = page.numberFormat(month) + '-' + page.numberFormat(day) + ' ' + hour
  251. this.setData({
  252. isShowSelectTime: false,
  253. selectTime: `${month}月${day}日 ${hour}`,
  254. data: data
  255. })
  256. },
  257. /**
  258. * 数字格式化
  259. */
  260. numberFormat: function (num) {
  261. return num < 10 ? '0'+num : num
  262. },
  263. /**
  264. * 返回上一页
  265. */
  266. back() {
  267. wx.navigateBack({
  268. delta: 1,
  269. });
  270. },
  271. /**
  272. * 获取产品详情
  273. */
  274. getServiceDetail: function () {
  275. let page = this
  276. app.api.getServiceDetail("id="+page.data.id, function (res) {
  277. console.log(res)
  278. if (res.code > 0) {
  279. page.setData({
  280. info: res.data
  281. })
  282. } else {
  283. wx.showToast({
  284. title: res.msg,
  285. icon: 'none'
  286. })
  287. }
  288. })
  289. },
  290. /**
  291. * 确认下单
  292. */
  293. confirmOrder: function () {
  294. let page = this, id = page.data.id, data = page.data.data, year = new Date().getFullYear()
  295. data.commodity_id = id
  296. if (!data.requirement_title) {
  297. wx.showToast({
  298. title: '请输入需求标题',
  299. icon: 'none'
  300. })
  301. return
  302. }
  303. if (!data.detailed_requirements) {
  304. wx.showToast({
  305. title: '请输入详细需求',
  306. icon:'none'
  307. })
  308. return
  309. }
  310. if (data.demand_picture.length == 0) {
  311. wx.showToast({
  312. title: '请上传需求照片',
  313. icon: 'none'
  314. })
  315. return
  316. }
  317. if (!data.user_name) {
  318. wx.showToast({
  319. title: '请输入姓名',
  320. icon: 'none'
  321. })
  322. return
  323. }
  324. if (!data.phone) {
  325. wx.showToast({
  326. title: '请输入手机号',
  327. icon: 'none'
  328. })
  329. return
  330. }
  331. if (!data.code) {
  332. wx.showToast({
  333. title: '请输入验证码',
  334. icon: 'none'
  335. })
  336. return
  337. }
  338. if (!data.email) {
  339. wx.showToast({
  340. title: '请输入邮箱',
  341. icon: 'none'
  342. })
  343. return
  344. }
  345. if (!data.budget_amount) {
  346. // wx.showToast({
  347. // title: '请输入预算金额',
  348. // icon: 'none'
  349. // })
  350. // return
  351. }
  352. if (!data.budget_time) {
  353. // wx.showToast({
  354. // title: '请选择预算时间',
  355. // icon: 'none'
  356. // })
  357. // return
  358. }
  359. data.budget_time = year + '-' + data.budget_time
  360. console.log(data)
  361. app.api.userServiceCreateOrder(data, function (res) {
  362. console.log(res)
  363. if (res.code > 0) {
  364. wx.showToast({
  365. title: res.msg,
  366. })
  367. app.db.set('element_order_change',1)
  368. setTimeout(() => {
  369. wx.switchTab({
  370. url: '../order/order',
  371. })
  372. }, 1000);
  373. } else {
  374. wx.showToast({
  375. title: res.msg,
  376. icon: 'none'
  377. })
  378. }
  379. })
  380. }
  381. })