payH5.vue 373 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view>
  3. <web-view :src="payUrl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. payUrl:null,
  11. }
  12. },
  13. onLoad(option) {
  14. this.payUrl=uni.getStorageSync("h5PayUrl");
  15. console.log(this.payUrl)
  16. },
  17. onShow() {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. </style>