123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="content">
- <!-- <web-view :webview-styles="webviewStyles" src="http://dms.32che.cn/#/carOwner/Report/451F3ECA-8CD1-4722-A13F-0241B827A672"></web-view> -->
- <!-- http://webwx.66km.com/#/carOwner/Report/%@?noAuth=true&hideHeader=true -->
- <iframe :src="urlStr" class="content"></iframe>
- <!-- <web-view :webview-styles="webviewStyles" src="http://dms.32che.cn/#/carOwner/Report/451F3ECA-8CD1-4722-A13F-0241B827A672"></web-view> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- urlStr:'',
- // webviewStyles: {
- // progress: {
- // color: '#FF3333'
- // }
- // }
- }
- },
- onLoad(opt) {
-
- this.urlStr = 'http://dms.32che.cn/#/carOwner/Report/' + opt.id + '?noAuth=true&hideHeader=true'
- console.log('urlstr=+',this.urlStr);
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- height: 100%;
- width: 100%;
- background-color: #FFFFFF;
-
- }
- </style>
|