skipone.vue 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="">
  3. <!-- <statusBar :item="navBarData"></statusBar> -->
  4. <web-view :src="url1" weixin-process="auto"></web-view>
  5. <!-- <iframe :src="url" frameborder="0" style="width: 100%; height: 100vh;"></iframe> -->
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. url1: '',
  13. navBarData: {
  14. title: '详情',
  15. btn: 1
  16. },
  17. };
  18. },
  19. onLoad(options) {
  20. console.log(options);
  21. this.url1 = decodeURIComponent(options.url);
  22. },
  23. methods: {
  24. onBackPress(options) {
  25. const currentWebview = this.$mp.page.$getAppWebview();
  26. if (currentWebview) {
  27. let child = currentWebview.children();
  28. for (let i = 0; i < child.length; i++) {
  29. currentWebview.remove(child[i]);
  30. }
  31. }
  32. return false;
  33. }
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. </style>