order-result.ts 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. // pages/orders/order-detail.ts
  2. import drawQrcode from "../../utils/weapp.qrcode.esm";
  3. import { api_userPaymentCancelRefund, api_userPaymentOrderDetail, api_userPaymentOrderRefundPayment } from "../../api/login";
  4. // 获取应用实例
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. status: 'WAIT_PAY',
  11. statusList: {
  12. WAIT_PAY: {
  13. logo: './images/ing.png',
  14. title: '等待付款',
  15. content: '为了确保您的订单顺利进行,请尽快完成支付'
  16. },
  17. PAID: {
  18. logo: './images/success.png',
  19. title: '已完成',
  20. content: '登录「音乐数字课堂」APP,开启AI学练之旅~'
  21. },
  22. CLOSED: {
  23. logo: './images/error.png',
  24. title: '已取消',
  25. content: '您的订单已被关闭,如有需要请重新下单'
  26. },
  27. WAIT_USE: {
  28. logo: './images/wait.png',
  29. title: '待使用',
  30. content: '为了顺利使用,请尽快扫描下方二维码进行激活'
  31. },
  32. REFUNDING: {
  33. logo: './images/refounding.png',
  34. title: '退款中',
  35. content: '您的订单正在退款中,预计7个工作日内审核完'
  36. },
  37. REFUNDED: {
  38. logo: './images/refounded.png',
  39. title: '已退款',
  40. content: '您的订单已成功退款,感谢您的耐心等待'
  41. }
  42. },
  43. timerCount: 0,
  44. timer: null as any,
  45. goodsInfo: {} as any,
  46. orderNo: "" as string,
  47. showCanvas: false, // 是否显示二维码
  48. canvasImg: "" as string,
  49. showService: false,
  50. refoundStatus: false
  51. },
  52. /**
  53. * 生命周期函数--监听页面加载
  54. */
  55. onLoad(options: any) {
  56. if (options.orderNo) {
  57. this.setData({
  58. orderNo: options.orderNo
  59. }, () => {
  60. this.getDetail(this.onTimeout)
  61. });
  62. }
  63. },
  64. async getDetail(callback?: any) {
  65. try {
  66. const { data } = await api_userPaymentOrderDetail(this.data.orderNo);
  67. if (data.code == 200) {
  68. const result = data.data || {}
  69. const goodsInfos = result.goodsInfos || []
  70. const tempGoods: any = []
  71. goodsInfos.forEach((item: any) => {
  72. tempGoods.push({
  73. ...item,
  74. shortUrl: item.activationCodeInfo.shortUrl,
  75. originalPrice: this.formatPrice(item.paymentCashAmount, 'ALL'),
  76. typeName: this.formatPeriod(item.activationCodeInfo?.times || 1, item.activationCodeInfo.type)
  77. })
  78. })
  79. let refundStyleStr = ''
  80. if(result.refundStyle === 'TURN_BACK') {
  81. refundStyleStr = '原路返回'
  82. } else if(result.refundStyle === 'OFFLINE') {
  83. refundStyleStr = '线下'
  84. }
  85. const goodsInfo = {
  86. orderNo: result.orderNo,
  87. createTime: result.createTime,
  88. wechatStatus: result.wechatStatus,
  89. goods: tempGoods,
  90. refundOrderId: result.refundOrderId,
  91. refundTime: result.refundTime,
  92. refundAmount: this.formatPrice(result.refundAmount || 0, 'ALL'),
  93. refundStyleStr
  94. }
  95. this.setData({
  96. goodsInfo,
  97. status: result.wechatStatus
  98. }, () => {
  99. callback && typeof callback === 'function' && callback()
  100. })
  101. if(result.wechatStatus != 'CLOSED' || result.wechatStatus != 'WAIT_PAY') {
  102. const firstGoods = tempGoods[0]
  103. if(firstGoods?.shortUrl) {
  104. this.setData({
  105. showCanvas: true
  106. }, () => {
  107. this.createQrCode(firstGoods?.shortUrl, 'canvasCode')
  108. })
  109. }
  110. }
  111. }
  112. } catch (error) {
  113. console.log(error, "error");
  114. }
  115. },
  116. // 格式化价格
  117. formatPrice(price: number, type?: string) {
  118. const amountStr = price.toFixed(2)
  119. const [integerPart, decimalPart] = amountStr.split('.');
  120. if(type === 'ALL') {
  121. return amountStr
  122. }
  123. return {
  124. integerPart,
  125. decimalPart
  126. }
  127. },
  128. // 格式化类型
  129. formatPeriod(num: number, type: string) {
  130. const template: any = {
  131. DAY: "天卡",
  132. MONTH: "月卡",
  133. YEAR: "年卡"
  134. }
  135. if(type === "YEAR" && num >= 99) {
  136. return '永久卡'
  137. }
  138. return num + template[type]
  139. },
  140. onSubmit() {
  141. wx.redirectTo({
  142. url: '../index/index'
  143. })
  144. },
  145. setCanvasSize: function () {
  146. const size = {} as any;
  147. try {
  148. const res = wx.getWindowInfo()
  149. const scale = 750 / 300; //不同屏幕下canvas的适配比例;设计稿是750宽
  150. const width = res.windowWidth / scale;
  151. const height = width; //canvas画布为正方形
  152. size.w = width;
  153. size.h = height;
  154. } catch (e) {
  155. // Do something when catch error
  156. console.log("获取设备信息失败" + e);
  157. }
  158. return size;
  159. },
  160. createQrCode(content: any, canvasId: any) {
  161. const size = this.setCanvasSize();
  162. drawQrcode({
  163. width: size.w,
  164. height: size.h,
  165. canvasId: canvasId,
  166. text: content,
  167. callback: () => {
  168. // 安卓机上不准确,生成的二维码无法扫描,加延时解决
  169. setTimeout(() => {
  170. wx.canvasToTempFilePath(
  171. {
  172. canvasId: canvasId,
  173. success: (res) => {
  174. this.setData({
  175. canvasImg: res.tempFilePath,
  176. });
  177. },
  178. },
  179. this
  180. );
  181. }, 500);
  182. },
  183. });
  184. },
  185. onTimeout() {
  186. // 轮询10次查询订单状态
  187. const goodsInfo = this.data.goodsInfo
  188. const timerCount = this.data.timerCount
  189. const timer = this.data.timer
  190. if(goodsInfo.wechatStatus === 'WAIT_PAY' && timerCount <= 10) {
  191. let count = timerCount
  192. const tempT = setTimeout(async () => {
  193. count += 1
  194. await this.getDetail()
  195. this.setData({
  196. timer: tempT,
  197. timerCount: count
  198. }, () => {
  199. this.onTimeout()
  200. })
  201. }, 3000);
  202. } else {
  203. clearTimeout(timer)
  204. }
  205. },
  206. /** 客服 */
  207. onService() {
  208. this.setData({
  209. showService: true
  210. })
  211. },
  212. changePop(event: { detail: any }) {
  213. this.setData({
  214. showService: event.detail
  215. })
  216. },
  217. /** 申请退款 */
  218. async cancelRefound() {
  219. try {
  220. const {data} = await api_userPaymentCancelRefund(this.data.goodsInfo.refundOrderId)
  221. // console.log(data, 'data')
  222. if(data.code == 200) {
  223. wx.showToast({ title: '取消退款成功', icon: 'none' })
  224. // setTimeout(() => {
  225. // wx.navigateBack({
  226. // delta: 1
  227. // })
  228. // }, 1000);
  229. this.getDetail()
  230. } else {
  231. wx.showToast({ title: data.message, icon: 'none' })
  232. }
  233. } catch {}
  234. },
  235. /** 申请退款 */
  236. useRefound() {
  237. this.setData({
  238. refoundStatus: true
  239. })
  240. },
  241. changeRefoundStatus(e: {detail: any}) {
  242. this.setData({
  243. refoundStatus: e.detail
  244. })
  245. },
  246. onRefoundComfirm() {
  247. this.setData({
  248. refoundStatus: false
  249. })
  250. // wx.navigateBack({
  251. // delta: 1
  252. // })
  253. this.getDetail()
  254. },
  255. onCopy(e: { currentTarget: any }) {
  256. wx.setClipboardData({
  257. data: e.currentTarget.dataset.orderno,
  258. success: () => {
  259. wx.showToast({title: '复制成功', icon: 'none'})
  260. },
  261. fail: () => {
  262. wx.showToast({title: '复制失败,请稍后再试', icon: 'none'})
  263. }
  264. })
  265. }
  266. })