| 12345678910111213141516171819202122232425 |
- <template>
- <view class="">
- <web-view :src="url">
- </web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url:"",
- scanCode: '',
- path: '',
- status: false
- }
- },
- onLoad(opt) {
- this.url = "https://d.dnzc.vip/cache/micro?appid=wxe25fed34f9f70ef4&redirect_uri=" + opt.url;
- },
- methods: {}
- }
- </script>
|