reportDetail.vue 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="content">
  3. <!-- <web-view :webview-styles="webviewStyles" src="http://dms.32che.cn/#/carOwner/Report/451F3ECA-8CD1-4722-A13F-0241B827A672"></web-view> -->
  4. <!-- http://webwx.66km.com/#/carOwner/Report/%@?noAuth=true&hideHeader=true -->
  5. <iframe :src="urlStr" class="content"></iframe>
  6. <!-- <web-view :webview-styles="webviewStyles" src="http://dms.32che.cn/#/carOwner/Report/451F3ECA-8CD1-4722-A13F-0241B827A672"></web-view> -->
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. urlStr:'',
  14. // webviewStyles: {
  15. // progress: {
  16. // color: '#FF3333'
  17. // }
  18. // }
  19. }
  20. },
  21. onLoad(opt) {
  22. this.urlStr = 'http://dms.32che.cn/#/carOwner/Report/' + opt.id + '?noAuth=true&hideHeader=true'
  23. console.log('urlstr=+',this.urlStr);
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. .content {
  31. height: 100%;
  32. width: 100%;
  33. background-color: #FFFFFF;
  34. }
  35. </style>