1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view>
- <web-view :src="payUrl"></web-view>
-
-
- </view>
- </template>
- <script>
-
-
- export default {
- data() {
- return {
- payUrl:null,
-
- }
- },
- onLoad(option) {
- this.payUrl=uni.getStorageSync("h5PayUrl");
- console.log(this.payUrl)
- },
- onShow() {
-
- },
- methods: {
-
-
- }
- }
- </script>
- <style lang="scss">
-
-
- </style>
|