report.vue 695 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <web-view :src="url"></web-view>
  3. <!-- <web-view v-if="flag" :src="url"></web-view> -->
  4. <!-- <iframe v-else :src="url" width="340" height="360" allowfullscreen allow="autoplay; fullscreen; microphone;"></iframe> -->
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url:"https://datav.aliyuncs.com/share/235518097ffd673bc1eb05011b9a02b6",
  11. flag:true
  12. }
  13. },
  14. onLoad: function(option) {
  15. if(option.url){
  16. this.url = option.url;
  17. uni.setNavigationBarTitle({
  18. title:"库点监控"
  19. })
  20. this.flag = false
  21. }
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>