result.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <div class="page-box">
  3. <div class="container">
  4. 小票
  5. {{result}}
  6. <div style="padding: .4267rem 0;">xxxx有限公司</div>
  7. <div class="list-style">
  8. <div class="title">订单状态</div>
  9. <div class="detail"></div>
  10. </div>
  11. <div class="list-style">
  12. <div class="title">订单尾号</div>
  13. <div class="detail"></div>
  14. </div>
  15. <div class="line-style"></div>
  16. <div class="list-style">
  17. <div class="title">支付总额</div>
  18. <div class="detail"></div>
  19. </div>
  20. <div class="list-style" style="justify-content: center;">
  21. <div class="button-style" @click="goBack">
  22. 返回首页
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </template>
  28. <script setup>
  29. import {
  30. ref,
  31. onMounted
  32. } from 'vue';
  33. import axios from 'axios';
  34. import 'https://wx.gtimg.com/pay_h5/goldplan/js/jgoldplan-1.0.0.js';
  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. console.log("showCustomPage")
  62. const customData = JSON.stringify({
  63. action: 'onIframeReady',
  64. displayStyle: 'SHOW_CUSTOM_PAGE',
  65. height: 900
  66. });
  67. parent.postMessage(customData, url.value);
  68. };
  69. // 请求订单信息(需要保存订单信息的后台系统提供)
  70. const queryOrderInfo = () => {
  71. axios({
  72. baseURL: 'https://www.xxxx.com/xxxxx',
  73. method: 'get',
  74. url: 'xxx', // 这里需要替换为实际的URL
  75. params: {
  76. out_trade_no: result.value.out_trade_no
  77. }
  78. })
  79. .then((res) => {
  80. if (res.data.success) {
  81. order.value = res.data.result;
  82. } else {
  83. parent.alert('出错了,请联系管理员!');
  84. }
  85. })
  86. .catch((err) => {
  87. parent.alert('出错了,请联系管理员!');
  88. });
  89. };
  90. // 返回首页
  91. const goBack = () => {
  92. const mchData = { action: 'jumpOut', jumpOutUrl: `${location.origin}/xxxxx/user` };
  93. const postData = JSON.stringify(mchData);
  94. parent.postMessage(postData, url.value);
  95. };
  96. </script>
  97. <style scoped>
  98. /* 您的样式 */
  99. .page-box {
  100. box-sizing: border-box;
  101. /* background-color: #f2f6ff; */
  102. background-color: #fff;
  103. padding: .36rem;
  104. padding-top: 1.32rem;
  105. }
  106. .container {
  107. display: flex;
  108. font-size: 1rem;
  109. flex-flow: column nowrap;
  110. justify-content: flex-start;
  111. align-items: center;
  112. }
  113. .img-wrapper {
  114. height: 1.7067rem;
  115. width: 1.7067rem;
  116. }
  117. .img-inner {
  118. width: 100%;
  119. height: 100%;
  120. object-fit: fill;
  121. border-radius: 50%;
  122. border: 1px solid #d1d1d1;
  123. }
  124. .list-style {
  125. display: flex;
  126. justify-content: space-between;
  127. align-items: center;
  128. line-height: 2rem;
  129. width: 100%;
  130. }
  131. .title {
  132. color: #666;
  133. }
  134. .detail {
  135. color: #333;
  136. }
  137. .line-style {
  138. height: 1px;
  139. width: 100%;
  140. margin: 5px;
  141. background-color: #d1d1d1;
  142. }
  143. .button-style {
  144. margin-top: .2667rem;
  145. width: 10rem;
  146. height: 28px;
  147. border: 1px solid #189fff;
  148. border-radius: 5px;
  149. background-color: #fff;
  150. color: #189fff;
  151. text-align: center;
  152. line-height: 28px;
  153. }
  154. .button-style:hover {
  155. background-color: #189fff;
  156. color: #fff;
  157. }
  158. </style>