reportDetail.vue 490 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="content">
  3. <web-view :src="urlStr"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. urlStr:'',
  11. }
  12. },
  13. onLoad(opt) {
  14. this.urlStr = 'http://dms.32che.cn/#/carOwner/Report/' + opt.id + '?noAuth=true&hideHeader=true'
  15. console.log('urlstr=+',this.urlStr);
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. .content {
  23. height: 100%;
  24. width: 100%;
  25. background-color: #FFFFFF;
  26. }
  27. </style>