result.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <div class="page-box">
  3. <div class="container">
  4. 小票
  5. <div style="padding: .4267rem 0;">xxxx有限公司</div>
  6. <div class="list-style">
  7. <div class="title">订单状态</div>
  8. <div class="detail"></div>
  9. </div>
  10. <div class="list-style">
  11. <div class="title">订单尾号</div>
  12. <div class="detail"></div>
  13. </div>
  14. <div class="line-style"></div>
  15. <div class="list-style">
  16. <div class="title">支付总额</div>
  17. <div class="detail"></div>
  18. </div>
  19. <div class="list-style" style="justify-content: center;">
  20. <div class="button-style" @click="goBack">
  21. 返回首页
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. </template>
  27. <script setup>
  28. import {
  29. ref,
  30. onMounted
  31. } from 'vue';
  32. import axios from 'axios';
  33. import 'https://wx.gtimg.com/pay_h5/goldplan/js/jgoldplan-1.0.0.js';
  34. const order = ref({});
  35. const result = ref({});
  36. const url = ref('https://payapp.weixin.qq.com');
  37. // 组件挂载后执行
  38. onMounted(() => {
  39. getQueryVal();
  40. // if (!result.value.out_trade_no) {
  41. // parent.alert('没有订单号,请联系管理员!');
  42. // } else {
  43. // queryOrderInfo();
  44. // }
  45. showCustomPage();
  46. });
  47. // 获取地址栏字段
  48. const getQueryVal = () => {
  49. const queryStr = window.location.search.substring(1); // 地址栏字符串
  50. const strArr = queryStr.split('&');
  51. if (strArr.length) {
  52. strArr.forEach((val) => {
  53. const subStrArr = val.split('=');
  54. result.value[subStrArr[0]] = subStrArr[1];
  55. });
  56. }
  57. };
  58. // 用于展示商家小票
  59. const showCustomPage = () => {
  60. console.log("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. .page-box {
  99. box-sizing: border-box;
  100. /* background-color: #f2f6ff; */
  101. background-color: #fff;
  102. padding: .36rem;
  103. padding-top: 1.32rem;
  104. }
  105. .container {
  106. display: flex;
  107. font-size: 1rem;
  108. flex-flow: column nowrap;
  109. justify-content: flex-start;
  110. align-items: center;
  111. }
  112. .img-wrapper {
  113. height: 1.7067rem;
  114. width: 1.7067rem;
  115. }
  116. .img-inner {
  117. width: 100%;
  118. height: 100%;
  119. object-fit: fill;
  120. border-radius: 50%;
  121. border: 1px solid #d1d1d1;
  122. }
  123. .list-style {
  124. display: flex;
  125. justify-content: space-between;
  126. align-items: center;
  127. line-height: 2rem;
  128. width: 100%;
  129. }
  130. .title {
  131. color: #666;
  132. }
  133. .detail {
  134. color: #333;
  135. }
  136. .line-style {
  137. height: 1px;
  138. width: 100%;
  139. margin: 5px;
  140. background-color: #d1d1d1;
  141. }
  142. .button-style {
  143. margin-top: .2667rem;
  144. width: 10rem;
  145. height: 28px;
  146. border: 1px solid #189fff;
  147. border-radius: 5px;
  148. background-color: #fff;
  149. color: #189fff;
  150. text-align: center;
  151. line-height: 28px;
  152. }
  153. .button-style:hover {
  154. background-color: #189fff;
  155. color: #fff;
  156. }
  157. </style>