result.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <template>
  2. <div class="page-box">
  3. <div class="container">
  4. 小票
  5. queryStr:{{queryStr}}
  6. result:{{result}}
  7. <!-- order:{{order}} -->
  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 {
  32. ref,
  33. onMounted
  34. } from 'vue';
  35. import axios from 'axios';
  36. import 'https://wx.gtimg.com/pay_h5/goldplan/js/jgoldplan-1.0.0.js';
  37. const order = ref({});
  38. const result = ref({a:123});
  39. const url = ref('https://payapp.weixin.qq.com');
  40. const queryStr = ref('');
  41. // 组件挂载后执行
  42. onMounted(async () => {
  43. await showCustomPage();
  44. await getQueryVal();
  45. // if (!result.value.out_trade_no) {
  46. // parent.alert('没有订单号,请联系管理员!');
  47. // } else {
  48. // queryOrderInfo();
  49. // }
  50. });
  51. // 获取地址栏字段
  52. const getQueryVal = () => {
  53. console.log(window.location)
  54. queryStr.value = window.location; // 地址栏字符串
  55. // const strArr = queryStr.value.split('&');
  56. // if (strArr.length) {
  57. // strArr.forEach((val) => {
  58. // const subStrArr = val.split('=');
  59. // result.value[subStrArr[0]] = subStrArr[1];
  60. // });
  61. // }
  62. };
  63. // 用于展示商家小票
  64. const showCustomPage = () => {
  65. console.log("showCustomPage")
  66. const customData = JSON.stringify({
  67. action: 'onIframeReady',
  68. displayStyle: 'SHOW_CUSTOM_PAGE',
  69. // height: 900
  70. });
  71. parent.postMessage(customData, url.value);
  72. };
  73. // 请求订单信息(需要保存订单信息的后台系统提供)
  74. const queryOrderInfo = () => {
  75. axios({
  76. baseURL: 'https://www.xxxx.com/xxxxx',
  77. method: 'get',
  78. url: 'xxx', // 这里需要替换为实际的URL
  79. params: {
  80. out_trade_no: result.value.out_trade_no
  81. }
  82. })
  83. .then((res) => {
  84. if (res.data.success) {
  85. order.value = res.data.result;
  86. } else {
  87. parent.alert('出错了,请联系管理员!');
  88. }
  89. })
  90. .catch((err) => {
  91. parent.alert('出错了,请联系管理员!');
  92. });
  93. };
  94. // 返回首页
  95. const goBack = () => {
  96. const mchData = { action: 'jumpOut', jumpOutUrl: `${location.origin}/#/pages/pay/resultYuan` };
  97. const postData = JSON.stringify(mchData);
  98. parent.postMessage(postData, url.value);
  99. };
  100. </script>
  101. <style scoped>
  102. /* 您的样式 */
  103. .page-box {
  104. box-sizing: border-box;
  105. /* background-color: #f2f6ff; */
  106. background-color: #fff;
  107. padding: .36rem;
  108. padding-top: 1.32rem;
  109. }
  110. .container {
  111. display: flex;
  112. font-size: 1rem;
  113. flex-flow: column nowrap;
  114. justify-content: flex-start;
  115. align-items: center;
  116. }
  117. .img-wrapper {
  118. height: 1.7067rem;
  119. width: 1.7067rem;
  120. }
  121. .img-inner {
  122. width: 100%;
  123. height: 100%;
  124. object-fit: fill;
  125. border-radius: 50%;
  126. border: 1px solid #d1d1d1;
  127. }
  128. .list-style {
  129. display: flex;
  130. justify-content: space-between;
  131. align-items: center;
  132. line-height: 2rem;
  133. width: 100%;
  134. }
  135. .title {
  136. color: #666;
  137. }
  138. .detail {
  139. color: #333;
  140. }
  141. .line-style {
  142. height: 1px;
  143. width: 100%;
  144. margin: 5px;
  145. background-color: #d1d1d1;
  146. }
  147. .button-style {
  148. margin-top: .2667rem;
  149. width: 10rem;
  150. height: 28px;
  151. border: 1px solid #189fff;
  152. border-radius: 5px;
  153. background-color: #fff;
  154. color: #189fff;
  155. text-align: center;
  156. line-height: 28px;
  157. }
  158. .button-style:hover {
  159. background-color: #189fff;
  160. color: #fff;
  161. }
  162. </style>