exportorderdetail.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. // pages/exportorderdetail/exportorderdetail.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. /* 组件参数 */
  15. showPopup: false,
  16. order_status: [
  17. '全部',
  18. '待支付',
  19. '待取货',
  20. '交易完成',
  21. '已取消',
  22. '退款申请'
  23. ],
  24. statusIndex: 0,
  25. startdate: '2021-02-21',
  26. enddate: '2021-04-21',
  27. order_number: 0, //订单数
  28. url: '', //导出地址
  29. email: '', //邮箱
  30. },
  31. /**
  32. * 生命周期函数--监听页面加载
  33. */
  34. onLoad(options) {
  35. this.setData({
  36. statusIndex: options.statusIndex,
  37. startdate: options.startdate,
  38. enddate: options.enddate,
  39. order_number: options.order_number,
  40. url: options.url
  41. })
  42. },
  43. /**
  44. * 生命周期函数--监听页面初次渲染完成
  45. */
  46. onReady() {
  47. },
  48. /**
  49. * 生命周期函数--监听页面显示
  50. */
  51. onShow() {
  52. },
  53. /**
  54. * 生命周期函数--监听页面隐藏
  55. */
  56. onHide() {
  57. },
  58. /**
  59. * 生命周期函数--监听页面卸载
  60. */
  61. onUnload() {
  62. },
  63. /**
  64. * 页面相关事件处理函数--监听用户下拉动作
  65. */
  66. onPullDownRefresh() {
  67. },
  68. /**
  69. * 页面上拉触底事件的处理函数
  70. */
  71. onReachBottom() {
  72. },
  73. /**
  74. * 用户点击右上角分享
  75. */
  76. onShareAppMessage() {
  77. },
  78. // 打开弹出层
  79. openPopup() {
  80. this.setData({
  81. showPopup: true
  82. })
  83. },
  84. // 关闭弹出层
  85. closePopup() {
  86. this.setData({
  87. showPopup: false
  88. })
  89. },
  90. // 直接打开Excel
  91. openFile() {
  92. let that = this;
  93. let time = Date.now();
  94. wx.downloadFile({
  95. url: 'https://' + that.data.url,
  96. filePath: wx.env.USER_DATA_PATH + '/' + time + '.xlsx',
  97. success(res) {
  98. const filePath = res.filePath;
  99. wx.openDocument({
  100. filePath: filePath,
  101. showMenu: true,
  102. fileType: 'xlsx',
  103. success(res) {
  104. console.log('打开文档成功', res);
  105. }
  106. })
  107. },
  108. fail(err) {
  109. console.log(err);
  110. }
  111. })
  112. },
  113. inputEmail(e) {
  114. this.setData({
  115. email: e.detail.value
  116. })
  117. },
  118. // 确认弹出层
  119. confirmPopup() {
  120. let that = this;
  121. if(that.data.email == '') {
  122. wx.showToast({
  123. title: '邮箱未录入',
  124. mask: true,
  125. icon: 'none'
  126. })
  127. return
  128. }
  129. wx.showLoading({
  130. title: '发送中',
  131. mask: true
  132. })
  133. wx.request({
  134. url: api.email,
  135. header: {
  136. 'Authorization': wx.getStorageSync('token')
  137. },
  138. data: {
  139. email: that.data.email,
  140. url: that.data.url
  141. },
  142. method: 'POST',
  143. success(res) {
  144. wx.hideLoading()
  145. console.log(res);
  146. if (res.data.code === 1) {
  147. wx.showToast({
  148. title: '发送成功',
  149. mask: true,
  150. success() {
  151. setTimeout(() => {
  152. that.setData({
  153. showPopup: false
  154. })
  155. }, 1500)
  156. }
  157. })
  158. } else {
  159. wx.showToast({
  160. title: res.data.msg,
  161. mask: true,
  162. icon: 'none'
  163. })
  164. }
  165. },
  166. fail(err) {
  167. wx.hideLoading()
  168. wx.showToast({
  169. title: '发起网络请求失败',
  170. icon: 'none',
  171. mask: true
  172. })
  173. },
  174. complete() {
  175. // wx.hideLoading()
  176. }
  177. })
  178. },
  179. copyURL() {
  180. wx.setClipboardData({
  181. data: this.data.url
  182. })
  183. }
  184. })