webview.vue 450 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <u-navbar :autoBack="true" title="远程巡查" bgColor="rgba(255,255,255,0)" :placeholder="true" titleStyle="font-weight:bold;color:#000000"></u-navbar>
  4. <web-view :fullscreen="false" :src="Url" :update-title="true"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. Url: ''
  12. };
  13. },
  14. onLoad(option) {
  15. this.Url = decodeURIComponent(option.url);
  16. },
  17. methods: {}
  18. };
  19. </script>
  20. <style></style>