WechatpayPage.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <q-page>
  3. <div class="row">
  4. <div class="text-center text-h5 col-12" style="background-color: #e7e7e7">
  5. Product Name: {{ productName }}
  6. </div>
  7. </div>
  8. <div class="row justify-center" style="min-height: 500px">
  9. <div
  10. class="column shadow-7 rounded-borders"
  11. style="
  12. position: relative;
  13. width: 340px;
  14. max-width: 95%;
  15. min-height: 450px;
  16. height: 600;
  17. background-color: yellow;
  18. background-image: url('https://photoprism.hichinatravel.com/api/v1/t/d6f91f961d96953e9a61f331f328468caddd05b7/32mcf2k4/fit_2048');
  19. background-size: cover;
  20. "
  21. >
  22. <div class="col-2"></div>
  23. <div class="col-2 row justify-center">
  24. <div class="text-left col-7">Total Price: {{ price }}</div>
  25. </div>
  26. <div class="col row justify-center" v-if="renderComponent">
  27. <div class="col-7">
  28. <QRCodeVue3 :width="220" :height="220" :value="htmlContent" />
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. </q-page>
  34. </template>
  35. <script>
  36. import QRCodeVue3 from "qrcode-vue3";
  37. import { onMounted, ref, nextTick, getCurrentInstance } from "vue";
  38. import { api } from "boot/axios";
  39. import { orderPaymentParamStore } from "stores/orderPaymentParamStore";
  40. import { useQuasar } from "quasar";
  41. export default {
  42. name: "WechatpayPage",
  43. components: {
  44. QRCodeVue3: QRCodeVue3,
  45. },
  46. setup() {
  47. const instance = getCurrentInstance();
  48. const app = instance.appContext.app;
  49. const gp = app.config.globalProperties;
  50. const $q = useQuasar();
  51. const oStore = orderPaymentParamStore();
  52. const refreshIntervalId = ref("");
  53. const codeUrl = ref("");
  54. const orderId = ref("");
  55. const price = ref("");
  56. const productName = ref("");
  57. const htmlContent = ref("");
  58. const renderComponent = ref(true);
  59. const forceRerender = async () => {
  60. renderComponent.value = false;
  61. // Wait for the change to get flushed to the DOM
  62. await nextTick();
  63. // Add the component back in
  64. renderComponent.value = true;
  65. };
  66. function checkPaymentStatus() {
  67. api
  68. .get("/api/v1/order/wechatpaystatus/" + orderId.value)
  69. .then((response) => {
  70. console.log("status is:");
  71. console.log(response.data);
  72. if ("SUCCESS" == response.data) {
  73. // jump to my order page
  74. clearInterval(refreshIntervalId.value);
  75. gp.$goPage("/my-orders");
  76. } else {
  77. forceRerender();
  78. }
  79. })
  80. .catch((e) => {
  81. console.log("Error getting /api/v1/order/wechatpaystatus");
  82. console.log(e);
  83. });
  84. }
  85. function b64_to_utf8(str) {
  86. return window.atob(str);
  87. }
  88. onMounted(() => {
  89. var allParamsFromPreviousPage = oStore.getPaymentDetail;
  90. productName.value = allParamsFromPreviousPage.productName;
  91. if (productName.value === "") {
  92. gp.$goPage("/");
  93. return;
  94. }
  95. console.log("what I got from book form:");
  96. console.log(allParamsFromPreviousPage);
  97. codeUrl.value = allParamsFromPreviousPage.codeUrl;
  98. forceRerender();
  99. console.log("decoded");
  100. htmlContent.value = b64_to_utf8(codeUrl.value);
  101. console.log(htmlContent.value);
  102. orderId.value = allParamsFromPreviousPage.orderId;
  103. price.value = allParamsFromPreviousPage.price;
  104. refreshIntervalId.value = setInterval(() => {
  105. checkPaymentStatus();
  106. }, 3000);
  107. });
  108. return {
  109. htmlContent,
  110. productName,
  111. price,
  112. forceRerender,
  113. renderComponent,
  114. };
  115. },
  116. };
  117. </script>