result.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <div class="page-box">
  3. <div class="container">
  4. 小票
  5. <div class="img-wrapper">
  6. <img class="img-inner" />
  7. </div>
  8. <div style="padding: .4267rem 0;">xxxx有限公司</div>
  9. <div class="list-style">
  10. <div class="title">订单状态</div>
  11. <div class="detail"></div>
  12. </div>
  13. <div class="list-style">
  14. <div class="title">订单尾号</div>
  15. <div class="detail"></div>
  16. </div>
  17. <div class="line-style"></div>
  18. <div class="list-style">
  19. <div class="title">支付总额</div>
  20. <div class="detail"></div>
  21. </div>
  22. <div class="list-style" style="justify-content: center;">
  23. <div class="button-style" @click="goBack">
  24. 返回首页
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </template>
  30. <script setup>
  31. import { ref, onMounted } from 'vue';
  32. import axios from 'axios';
  33. import 'https://wx.gtimg.com/pay_h5/goldplan/js/jgoldplan-1.0.0.js';
  34. const logo = ref('./imgs/logo.png');
  35. const order = ref({});
  36. const result = ref({});
  37. const url = ref('https://payapp.weixin.qq.com');
  38. // 组件挂载后执行
  39. onMounted(() => {
  40. getQueryVal();
  41. if (!result.value.out_trade_no) {
  42. parent.alert('没有订单号,请联系管理员!');
  43. } else {
  44. queryOrderInfo();
  45. }
  46. showCustomPage();
  47. });
  48. // 获取地址栏字段
  49. const getQueryVal = () => {
  50. const queryStr = window.location.search.substring(1); // 地址栏字符串
  51. const strArr = queryStr.split('&');
  52. if (strArr.length) {
  53. strArr.forEach((val) => {
  54. const subStrArr = val.split('=');
  55. result.value[subStrArr[0]] = subStrArr[1];
  56. });
  57. }
  58. };
  59. // 用于展示商家小票
  60. const showCustomPage = () => {
  61. const customData = JSON.stringify({
  62. action: 'onIframeReady',
  63. displayStyle: 'SHOW_CUSTOM_PAGE',
  64. height: 900
  65. });
  66. parent.postMessage(customData, url.value);
  67. };
  68. // 请求订单信息(需要保存订单信息的后台系统提供)
  69. // const queryOrderInfo = () => {
  70. // axios({
  71. // baseURL: 'https://www.xxxx.com/xxxxx',
  72. // method: 'get',
  73. // url: 'xxx', // 这里需要替换为实际的URL
  74. // params: {
  75. // out_trade_no: result.value.out_trade_no
  76. // }
  77. // })
  78. // .then((res) => {
  79. // if (res.data.success) {
  80. // order.value = res.data.result;
  81. // } else {
  82. // parent.alert('出错了,请联系管理员!');
  83. // }
  84. // })
  85. // .catch((err) => {
  86. // parent.alert('出错了,请联系管理员!');
  87. // });
  88. // };
  89. // 返回首页
  90. // const goBack = () => {
  91. // const mchData = { action: 'jumpOut', jumpOutUrl: `${location.origin}/xxxxx/user` };
  92. // const postData = JSON.stringify(mchData);
  93. // parent.postMessage(postData, url.value);
  94. // };
  95. </script>
  96. <style scoped>
  97. /* 您的样式 */
  98. </style>