orderdetail.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. // pages/orderdetail/orderdetail.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  11. title: '', //导航栏 中间的标题
  12. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  13. },
  14. orderStatus: 0, //订单状态/类型(0:交易完成;1:交易已取消;2:待取货;3:退款成功;4:待支付;)
  15. /* 组件参数 */
  16. showPopup: false, //显示确认框
  17. showPopupQRCode: false, //显示二维码
  18. /* 表单参数 */
  19. id: 0, //订单id
  20. order_info: {}, //订单信息
  21. user_info: {}, //用户信息
  22. commodity_list: [], //评论信息
  23. /* 支付相关 */
  24. showPayTypePicker: false, //显示支付方式选择器
  25. payTypes: [], //支付方式列表
  26. payType: [0], //支付方式
  27. showEMTPopup: false, //显示EMT支付弹出层
  28. /* EMT支付 */
  29. head_email: '', //团长邮箱
  30. order_number: '', //订单编号
  31. /* 修改订单 */
  32. genders: ['男士', '女士'],
  33. genderIndex: 0,
  34. consignee: '', //收货人姓名
  35. phone: '', //收货人手机号
  36. receiving_address: '', //收货人地址
  37. wxpayservice: '', //微信支付手续费
  38. },
  39. /**
  40. * 生命周期函数--监听页面加载
  41. */
  42. onLoad: function (options) {
  43. this.setData({
  44. id: Number(options.id)
  45. })
  46. },
  47. /**
  48. * 生命周期函数--监听页面初次渲染完成
  49. */
  50. onReady: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面显示
  54. */
  55. onShow: function () {
  56. let that = this;
  57. // 获取订单详情
  58. wx.showLoading({
  59. title: '加载中',
  60. mask: true
  61. })
  62. wx.request({
  63. url: api.Order_info,
  64. header: {
  65. 'Authorization': wx.getStorageSync('token')
  66. },
  67. data: {
  68. id: that.data.id
  69. },
  70. method: 'POST',
  71. success(res) {
  72. console.log(res);
  73. if (res.data.code === 1) {
  74. that.setData({
  75. order_info: res.data.data.order_info,
  76. user_info: res.data.data.user_info,
  77. commodity_list: res.data.data.commodity_list
  78. })
  79. } else {
  80. wx.showToast({
  81. title: res.data.msg,
  82. mask: true,
  83. icon: 'none'
  84. })
  85. }
  86. },
  87. fail(err) {
  88. wx.showToast({
  89. title: '发起网络请求失败',
  90. icon: 'none',
  91. mask: true
  92. })
  93. },
  94. complete() {
  95. wx.hideLoading()
  96. }
  97. })
  98. },
  99. /**
  100. * 生命周期函数--监听页面隐藏
  101. */
  102. onHide: function () {
  103. },
  104. /**
  105. * 生命周期函数--监听页面卸载
  106. */
  107. onUnload: function () {
  108. },
  109. /**
  110. * 页面相关事件处理函数--监听用户下拉动作
  111. */
  112. onPullDownRefresh: function () {
  113. },
  114. /**
  115. * 页面上拉触底事件的处理函数
  116. */
  117. onReachBottom: function () {
  118. },
  119. /**
  120. * 用户点击右上角分享
  121. */
  122. onShareAppMessage: function () {
  123. let order_id = this.data.order_info.id; //订单ID
  124. return {
  125. title: '订单分享',
  126. path: '/pages/orderdetail/orderdetail?id=' + order_id,
  127. imageUrl: 'https://s4.ax1x.com/2021/12/29/TccgfK.jpg'
  128. }
  129. },
  130. // 联系团长
  131. callHead() {
  132. wx.makePhoneCall({
  133. phoneNumber: this.data.user_info.phone
  134. })
  135. },
  136. // 显示二维码
  137. openPopupQRCode() {
  138. this.setData({
  139. showPopupQRCode: true
  140. })
  141. },
  142. // 取消订单
  143. cancelOrder() {
  144. this.setData({
  145. showPopup: true
  146. })
  147. },
  148. // 申请退款
  149. requestRefund() {
  150. wx.navigateTo({
  151. url: '/pages/requestrefund/requestrefund?id=' + this.data.order_info.id,
  152. })
  153. },
  154. // 关闭弹出层
  155. closePopup() {
  156. this.setData({
  157. showPopup: false,
  158. showPopupQRCode: false
  159. })
  160. },
  161. // 仍要取消
  162. confirmCancel() {
  163. // console.log('仍要取消');
  164. let that = this;
  165. wx.showLoading({
  166. title: '加载中',
  167. mask: true
  168. })
  169. wx.request({
  170. url: api.Order_cancel,
  171. header: {
  172. 'Authorization': wx.getStorageSync('token')
  173. },
  174. method: 'POST',
  175. data: {
  176. id: that.data.order_info.id
  177. },
  178. success(res) {
  179. wx.hideLoading()
  180. console.log(res);
  181. if (res.data.code === 1) {
  182. wx.showToast({
  183. title: '取消成功',
  184. mask: true,
  185. success() {
  186. setTimeout(() => {
  187. that.setData({
  188. showPopup: false
  189. })
  190. wx.reLaunch({
  191. url: '/pages/index/index',
  192. })
  193. }, 1500)
  194. }
  195. })
  196. } else {
  197. wx.showToast({
  198. title: res.data.msg,
  199. mask: true,
  200. icon: 'none'
  201. })
  202. }
  203. },
  204. fail(err) {
  205. wx.hideLoading()
  206. wx.showToast({
  207. title: '发起网络请求失败',
  208. icon: 'none',
  209. mask: true
  210. })
  211. },
  212. complete() {
  213. // wx.hideLoading()
  214. }
  215. })
  216. },
  217. // 修改订单信息
  218. changeOrder() {
  219. this.setData({
  220. consignee: this.data.order_info.consignee,
  221. phone: this.data.order_info.phone,
  222. receiving_address: this.data.order_info.receiving_address,
  223. genderIndex: this.data.order_info.gender,
  224. showModifyOrder: true,
  225. showPopup: false
  226. })
  227. },
  228. // 确认收货
  229. confirmReceipt() {
  230. let that = this;
  231. wx.showLoading({
  232. title: '加载中',
  233. mask: true
  234. })
  235. wx.request({
  236. url: api.Order_receiving,
  237. header: {
  238. 'Authorization': wx.getStorageSync('token')
  239. },
  240. method: 'POST',
  241. data: {
  242. id: that.data.order_info.id
  243. },
  244. success(res) {
  245. wx.hideLoading()
  246. console.log(res);
  247. if (res.data.code === 1) {
  248. wx.showToast({
  249. title: '收货成功',
  250. mask: true,
  251. success() {
  252. setTimeout(() => {
  253. wx.reLaunch({
  254. url: '/pages/index/index',
  255. })
  256. }, 1500)
  257. }
  258. })
  259. } else {
  260. wx.showToast({
  261. title: res.data.msg,
  262. mask: true,
  263. icon: 'none'
  264. })
  265. }
  266. },
  267. fail(err) {
  268. wx.hideLoading()
  269. wx.showToast({
  270. title: '发起网络请求失败',
  271. icon: 'none',
  272. mask: true
  273. })
  274. },
  275. complete() {
  276. // wx.hideLoading()
  277. }
  278. })
  279. },
  280. // 复制订单号
  281. copyOrderNumber() {
  282. wx.setClipboardData({
  283. data: this.data.order_info.order_number
  284. })
  285. },
  286. // 去支付(打开支付方式弹出层)
  287. openPayTypePicker() {
  288. // 获取支付方式列表
  289. let that = this;
  290. let order_id = that.data.order_info.id;
  291. wx.showLoading({
  292. title: '加载中',
  293. mask: true
  294. })
  295. wx.request({
  296. url: api.Order_payment_method,
  297. header: {
  298. 'Authorization': wx.getStorageSync('token')
  299. },
  300. data: {
  301. id: Number(order_id)
  302. },
  303. method: 'POST',
  304. success(res) {
  305. console.log(res);
  306. if (res.data.code === 1) {
  307. that.setData({
  308. payTypes: res.data.data,
  309. showPayTypePicker: true
  310. })
  311. } else {
  312. wx.showToast({
  313. title: res.data.msg,
  314. mask: true,
  315. icon: 'none'
  316. })
  317. }
  318. },
  319. fail(err) {
  320. wx.showToast({
  321. title: '发起网络请求失败',
  322. icon: 'none',
  323. mask: true
  324. })
  325. },
  326. complete() {
  327. wx.hideLoading()
  328. }
  329. })
  330. },
  331. // 关闭支付方式弹出层
  332. closePayTypePicker() {
  333. this.setData({
  334. showPayTypePicker: false
  335. })
  336. },
  337. // 支付方式改变
  338. payTypeChanged(e) {
  339. this.setData({
  340. payType: e.detail.value
  341. })
  342. },
  343. // 确认支付
  344. confirmPay() {
  345. let that = this;
  346. let payType = that.data.payTypes[that.data.payType[0]]; //支付方式
  347. let id = that.data.order_info.id; //订单ID
  348. let payment_method = payType.payment_method; //支付方式(0微信支付,1EMT支付,2线下支付)
  349. let payment_price = that.data.order_info.payment_amount; //支付金额
  350. // 如果支付方式为微信支付-获取微信支付手续费
  351. if (payType.payment_name == '微信支付') {
  352. wx.showLoading({
  353. title: '加载中',
  354. mask: true
  355. })
  356. wx.request({
  357. url: api.Service,
  358. header: {
  359. 'Authorization': wx.getStorageSync('token')
  360. },
  361. method: 'POST',
  362. success(res) {
  363. wx.hideLoading();
  364. // console.log(res);
  365. that.setData({
  366. wxpayservice: Number(res.data.data)
  367. })
  368. payment_price = payment_price * (1 + that.data.wxpayservice);
  369. payment_price = payment_price.toFixed(2);
  370. that.zhenDePay(id, payment_method, payment_price);
  371. },
  372. fail(err) {
  373. wx.hideLoading()
  374. }
  375. })
  376. } else {
  377. that.zhenDePay(id, payment_method, payment_price);
  378. }
  379. },
  380. // 真的要支付吗?在这里?就现在?
  381. zhenDePay(id, payment_method, payment_price) {
  382. let that = this;
  383. wx.showLoading({
  384. title: '加载中',
  385. mask: true
  386. })
  387. wx.request({
  388. url: api.Order_payment,
  389. header: {
  390. 'Authorization': wx.getStorageSync('token')
  391. },
  392. data: {
  393. id: Number(id),
  394. payment_method: Number(payment_method),
  395. payment_price: payment_price
  396. },
  397. method: 'POST',
  398. success(res) {
  399. wx.hideLoading()
  400. console.log(res);
  401. if (res.data.code === 1) {
  402. if (res.data.msg == 'EMT支付') {
  403. that.setData({
  404. head_email: res.data.data.email,
  405. order_number: res.data.data.order_number
  406. })
  407. that.openEMTPopup()
  408. }
  409. if (res.data.msg == '线下支付') {
  410. that.setData({
  411. showPayTypePicker: false
  412. })
  413. wx.navigateTo({
  414. url: '/pages/orderdetail/orderdetail?id=' + id,
  415. })
  416. }
  417. if (res.data.msg == '微信支付') {
  418. wx.requestPayment({
  419. appId: res.data.data.payParams.appId,
  420. nonceStr: res.data.data.payParams.nonceStr,
  421. package: res.data.data.payParams.package,
  422. paySign: res.data.data.payParams.paySign,
  423. timeStamp: res.data.data.payParams.timeStamp,
  424. signType: res.data.data.payParams.signType,
  425. success(res) {
  426. wx.hideLoading()
  427. console.log(res);
  428. wx.showToast({
  429. title: '支付成功',
  430. mask: true,
  431. success() {
  432. setTimeout(() => {
  433. that.setData({
  434. showPayTypePicker: false
  435. })
  436. wx.navigateTo({
  437. url: '/pages/orderdetail/orderdetail?id=' + id,
  438. })
  439. }, 1500)
  440. }
  441. })
  442. },
  443. fail(res) {
  444. wx.hideLoading()
  445. console.log(res);
  446. if (res.errMsg.search('cancel')) {
  447. wx.showToast({
  448. title: '用户取消支付',
  449. icon: 'error',
  450. mask: true
  451. })
  452. } else if (res.errMsg.search('offline')) {
  453. wx.showToast({
  454. title: '网络断开连接',
  455. icon: 'error',
  456. mask: true
  457. })
  458. }
  459. }
  460. })
  461. }
  462. } else {
  463. wx.showToast({
  464. title: res.data.msg,
  465. mask: true,
  466. icon: 'none'
  467. })
  468. }
  469. },
  470. fail(err) {
  471. wx.hideLoading()
  472. wx.showToast({
  473. title: '发起网络请求失败',
  474. icon: 'none',
  475. mask: true
  476. })
  477. },
  478. complete() {
  479. // wx.hideLoading()
  480. }
  481. })
  482. },
  483. // 打开EMT支付弹出层
  484. openEMTPopup() {
  485. this.setData({
  486. showPayTypePicker: false,
  487. showEMTPopup: true
  488. })
  489. },
  490. // 关闭EMT支付弹出层
  491. closeEMTPopup() {
  492. this.setData({
  493. showEMTPopup: false
  494. })
  495. },
  496. // EMT已支付
  497. EMTpaid() {
  498. let id = this.data.order_info.id; //订单ID
  499. wx.navigateTo({
  500. url: '/pages/orderdetail/orderdetail?id=' + id,
  501. })
  502. },
  503. /* 修改订单相关接口 */
  504. // 输入姓名
  505. inputConsignee(e) {
  506. this.setData({
  507. consignee: e.detail.value
  508. })
  509. },
  510. // 输入手机号
  511. inputPhone(e) {
  512. this.setData({
  513. phone: e.detail.value
  514. })
  515. },
  516. // 输入地址
  517. inputAddress(e) {
  518. this.setData({
  519. receiving_address: e.detail.value
  520. })
  521. },
  522. // 选择性别
  523. selectGender(e) {
  524. this.setData({
  525. genderIndex: e.currentTarget.dataset.index
  526. })
  527. },
  528. // 修改订单
  529. confirmModify() {
  530. let that = this;
  531. if (that.data.consignee == '') {
  532. wx.showToast({
  533. title: '姓名未录入',
  534. icon: 'none',
  535. mask: true
  536. })
  537. return
  538. }
  539. if (that.data.phone == '') {
  540. wx.showToast({
  541. title: '手机号未录入',
  542. icon: 'none',
  543. mask: true
  544. })
  545. return
  546. }
  547. if (that.data.receiving_address == '') {
  548. wx.showToast({
  549. title: '地址未录入',
  550. icon: 'none',
  551. mask: true
  552. })
  553. return
  554. }
  555. wx.showLoading({
  556. title: '提交中',
  557. mask: true
  558. })
  559. wx.request({
  560. url: api.Order_edit_info,
  561. header: {
  562. 'Authorization': wx.getStorageSync('token')
  563. },
  564. method: 'POST',
  565. data: {
  566. id: that.data.order_info.id,
  567. consignee: that.data.consignee,
  568. phone: that.data.phone,
  569. receiving_address: that.data.receiving_address,
  570. gender: that.data.genderIndex
  571. },
  572. success(res) {
  573. wx.hideLoading()
  574. console.log(res);
  575. if (res.data.code === 1) {
  576. wx.showToast({
  577. title: '提交成功',
  578. mask: true,
  579. success() {
  580. setTimeout(() => {
  581. wx.reLaunch({
  582. url: '/pages/index/index',
  583. })
  584. }, 1500)
  585. }
  586. })
  587. } else {
  588. wx.showToast({
  589. title: res.data.msg,
  590. mask: true,
  591. icon: 'none'
  592. })
  593. }
  594. },
  595. fail(err) {
  596. wx.hideLoading()
  597. wx.showToast({
  598. title: '发起网络请求失败',
  599. icon: 'none',
  600. mask: true
  601. })
  602. },
  603. complete() {
  604. // wx.hideLoading()
  605. }
  606. })
  607. },
  608. // 关闭弹窗
  609. closeModifyOrder() {
  610. this.setData({
  611. showModifyOrder: false
  612. })
  613. },
  614. })