skip.vue 386 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="">
  3. <web-view :src="url">
  4. </web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. url:"",
  12. scanCode: '',
  13. path: '',
  14. status: false
  15. }
  16. },
  17. onLoad(opt) {
  18. this.url = "https://d.dnzc.vip/cache/micro?appid=wxe25fed34f9f70ef4&redirect_uri=" + opt.url;
  19. },
  20. methods: {}
  21. }
  22. </script>