web_view.vue 522 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <web-view :src="url" :webview-styles="webviewStyles" @message="callback"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: '',
  11. webviewStyles: {
  12. progress: false,
  13. }
  14. };
  15. },
  16. onLoad: function(option) {
  17. if (option && option.name) {
  18. uni.setNavigationBarTitle({
  19. title:option.name
  20. });
  21. }
  22. this.url = this.Dever.data('web_view');
  23. },
  24. onShow: function() {},
  25. methods: {
  26. callback(e) {
  27. },
  28. }
  29. };
  30. </script>
  31. <style>
  32. </style>