Browse Source

1.车检报告

guo 2 years ago
parent
commit
f968c6de46
2 changed files with 30 additions and 16 deletions
  1. 24 10
      pages/user/reportDetail.vue
  2. 6 6
      pages/user/user.vue

+ 24 - 10
pages/user/reportDetail.vue

@@ -1,20 +1,28 @@
 <template>
-	<view>
-		<web-view :webview-styles="webviewStyles" src="http://dms.32che.cn/#/carOwner/Report/451F3ECA-8CD1-4722-A13F-0241B827A672"></web-view>
-
+	<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 {
-				webviewStyles: {
-					progress: {
-						color: '#FF3333'
-					}
-				}
+			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: {
 
@@ -22,6 +30,12 @@
 	}
 </script>
 
-<style>
+<style>
+	.content {
+		height: 100%;
+		width: 100%;
+		background-color: #FFFFFF;
+		
+	}
 
 </style>

+ 6 - 6
pages/user/user.vue

@@ -13,10 +13,10 @@
 			<image :src="headImg" mode="" style="width: 120rpx;height: 120rpx;border-radius: 60rpx;"></image>
 			<view class="mes">
 				<view class="nick">
-					<view class="nickName">昵称</view>
+					<view class="nickName">{{ueserInfo.nickName}}</view>
 					<view class="grade">高级</view>
 				</view>
-				<view class="phone">17583492837</view>
+				<view class="phone">{{ueserInfo.mobilePhone}}</view>
 			</view>
 		</view>
 
@@ -195,13 +195,13 @@
 			const wxOpenData = uni.getStorageSync("wxOpenData");
 			if(wxOpenData){
 				this.headImg = wxOpenData.loginInfo.customerInfo.headImgurl;
-			}
+				this.uid = wxOpenData.loginInfo.uid;
+			}
+			this.ueserInfo = uni.getStorageSync("ueserInfo")
 		},
 		onShow() {
 			this.$common.isUserId()
-			this.ueserInfo = uni.getStorageSync("logodata");
-			this.shopData = uni.getStorageSync("shopData");
-			this.uid = uni.getStorageSync("logodata").uid;
+			
 			if (this.uid) {
 				this.queryMyDetail();
 			}