order-result.ts 7.1 KB

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