result.vue 3.0 KB

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