twt 2 年之前
父节点
当前提交
d97906f36f
共有 3 个文件被更改,包括 29 次插入18 次删除
  1. 1 1
      components/timeSelect/timeSelect.vue
  2. 26 15
      pages/index/index.vue
  3. 2 2
      pages/user/reportDetail.vue

+ 1 - 1
components/timeSelect/timeSelect.vue

@@ -83,7 +83,7 @@ export default {
 				title: '加载中'
 			});
 			var userInfo = uni.getStorageSync("userInfo");
-			this.$http('detail/getOrderTimes', {
+			this.$http('opendetail/getOrderTimes', {
 				shopId:userInfo.shopId,
 			}, 'GET').then(res => {
 				uni.hideLoading();

+ 26 - 15
pages/index/index.vue

@@ -23,7 +23,7 @@
 		        <view class="carinfoBoxTopCont">
 		          <view class="carinfoBoxTopContTop">
 		            <view class="carInfoplateNumber">{{carInfo.plateNumber}}</view>
-		            <view class="carTnfomilage">{{carInfo.milage}}km</view>
+		            <view class="carTnfomilage">{{carInfo.milage?carInfo.milage:0}}km</view>
 		          </view>
 		          <view class="carInfocarModel" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
 		          <view class="carInfocarModel" v-else>暂无</view>
@@ -198,9 +198,6 @@
 				wxOpenData:'',
 				code:'',
 				carInfo:{
-					plateNumber:11,
-					milage:'3222',
-					carModel:'奥迪',
 				}
 			}
 		},
@@ -211,17 +208,23 @@
 			console.log(ext)
 			this.shopId=ext.shopId;
 			this.url=ext.url;
-			uni.setStorage({
-				key: 'extdata',
-				data: {
-					shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
-				},
-				 success: function () {
-				     that.uniLogin()
+			// uni.setStorage({
+			// 	key: 'extdata',
+			// 	data: {
+			// 		shopId:'E37BB296-5A08-4534-859D-B351BA611AF9',
+			// 	},
+			// 	 success: function () {
+			// 	     that.uniLogin()
 				 
-				 }
-			}); 
-			this.uniLogin()
+			// 	 }
+			// }); 
+			this.userInfo = uni.getStorageSync("userInfo");
+			if(this.userInfo){
+				this.getCarList()
+			}else{
+				this.uniLogin()
+			}
+			
 		},
 		methods: {
 			information(){
@@ -317,12 +320,20 @@
 							key: 'userInfo',
 							data: data.loginInfo.openUser,
 							 success: function () {
-							    // that.uniLogin()
+							     that.getCarList()
 							 
 							 }
 						}); 
 					}
 				 		
+				  })
+			 },
+			 getCarList(){
+				 this.$http('opencarOwnerHome/queryCarInfoList', {
+				   
+				  },'GET').then(res => {
+				 	this.carInfo=res.data[0]
+				 					
 				  })
 			 }
 			 

+ 2 - 2
pages/user/reportDetail.vue

@@ -2,8 +2,8 @@
 	<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> -->
+<!-- <iframe :src="urlStr" class="content"></iframe> -->
+<web-view  :src="urlStr"></web-view>
 	</view>
 </template>