k94314517
2024-04-10 45a8fb5db1b0aa6d5cd39198ffc30dba5ec8b2d9
wx/pages/webView/webView.vue
@@ -1,6 +1,6 @@
<template>
   <scroll-view scroll-y class="box">
      <web-view :src="url"></web-view>
      <web-view :src="address"></web-view>
   </scroll-view>
</template>
@@ -8,11 +8,11 @@
   export default {
      data() {
         return {
            url: ''
            address: ''
         };
      },
      onLoad(option) {
         this.url = option.url
         this.address = decodeURIComponent(option.url)
      }
   }
</script>