You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mpng-payment.vue 612B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="content-value">
  3. <web-view :src="state.urls"></web-view>
  4. </view>
  5. </template>
  6. <script setup lang="ts">
  7. import { reactive } from "vue";
  8. import {
  9. onLoad,
  10. } from "@dcloudio/uni-app";
  11. // let urls = "http://yunbanktest.bankcomm.com/tcipp/pmss/cipp.jsp?qrCode=https://qr.95516.com/03010000/ncipp/0bcei5qb20230914115204";
  12. let urls = "";
  13. const state = reactive({
  14. urls: "",
  15. });
  16. onLoad((option: any) => {
  17. state.urls = decodeURIComponent("http://yunbanktest.bankcomm.com/tcipp/pmss/cipp.jsp'," + '?qrCode=' + option.url)
  18. console.log(urls)
  19. });
  20. </script>
  21. <style >
  22. </style>