twt 1 gadu atpakaļ
vecāks
revīzija
b61bec0b99

+ 5 - 3
components/homenav/nav.vue

@@ -45,7 +45,7 @@ export default {
 				/* uni.switchTab({
 					url:'../../pages/index/index'
 				}) */
-			uni.navigateTo({
+			uni.reLaunch({
 				url:'/pages/index/index'
 			})
 			
@@ -76,6 +76,8 @@ export default {
 		height: 44rpx;
 		/* margin-left: 10rpx; */
 		/* margin-right: 20rpx; */
+		padding-left: 13rpx;
+		    padding-right: 2rpx;
 	}
 	.navsx{
 		width: 2rpx;
@@ -86,7 +88,7 @@ export default {
 	.homeImg{
 		width: 44rpx;
 		height: 44rpx;
-		
+		padding-right: 23rpx;
 	}
 	.zdyNavLeft{
 		display: flex;
@@ -94,7 +96,7 @@ export default {
         border: 1px solid #e1e1e1;
 		margin-left: 15rpx;
 		border-radius: 35rpx;
-		padding: 10rpx 23rpx 8rpx 13rpx;
+		padding: 10rpx 0rpx 8rpx 0rpx;
 		
 	}
 	.zdyNavTitle{

+ 1 - 1
components/nodata/nodata.vue

@@ -32,7 +32,7 @@ export default {
 <style scoped>
 	
 	.nodataImg{
-	  width: 400rpx;
+	  width: 176rpx;
 	  padding-top: 100rpx;
 	}
 	.noTxt{

+ 2 - 2
pages.json

@@ -3,7 +3,7 @@
 		{
 			"path": "pages/index/index",
 			"style": {
-				"navigationBarTitleText": "配件查询",
+				"navigationBarTitleText": "用油查询",
 				"navigationStyle": "custom"
 			}
 		},
@@ -80,7 +80,7 @@
 	],
 	"globalStyle": {
 		"navigationBarTextStyle": "black",
-		"navigationBarTitleText": "配件查询",
+		"navigationBarTitleText": "用油查询",
 		"navigationBarBackgroundColor": "#F8F8F8",
 		"backgroundColor": "#F8F8F8"
 	},

+ 1 - 1
pages/index/byItem.vue

@@ -128,7 +128,7 @@
 	height: 46rpx;
 }
 .historylinecar{
-	font-weight: 400;font-size: 26rpx;
+	font-weight: 500;font-size: 26rpx;
 	color: #1A1A1A;
 	line-height: 46rpx;width: 636rpx;
 }

+ 1 - 1
pages/index/carModel.vue

@@ -474,7 +474,7 @@
 	.brand-select{
 	  .brand-select-title{
 	    height: 64rpx;
-	    background:rgba(247,247,247,1);
+	   
 	    position: relative;
 	    h5{
 	      position: absolute;

+ 13 - 7
pages/index/engineOil.vue

@@ -26,7 +26,7 @@
 					<view class="topName">车辆配置</view>
 				</view>
 			</view>
-			<view class="jiyouBox">
+			<view class="jiyouBox" v-if="loading">
 				<view class="jiyouTop">
 					<view class="jiyoutopTitle">机油推荐</view>
 					<view class="jyzl">机油加注量:<span style="color: #FF4F00;">{{oilusage}}</span> </view>
@@ -67,6 +67,7 @@
 			   MaintainPartList:[],
 			   oilusage:'',
 			   iStatusBarHeight:'',
+			   loading:false,
 			}
 		},
 		onLoad(opt) {
@@ -78,14 +79,16 @@
 		},
 		methods: {
              queryMaintainPartList(){
+				 this.loading=false;
 				 uni.showLoading({ title: '加载中'});
 				 this.$http('partsByOpen/queryMaintainPartList', {
 				   groupId:this.optdata.id,
 				   componentCode:'015001',
 				   
 				  },'POST').then(res => {
-				 	uni.hideLoading();
-				 	this.MaintainPartList=res.data
+					  this.loading=true;
+				 	  uni.hideLoading();
+				 	  this.MaintainPartList=res.data
 				 })
 			 },
 			 queryOilInfoByGroupID(){
@@ -128,7 +131,9 @@
 		min-height: 100vh;
 		background: #F4F5F7;
 	}
-
+    .jyimgBox{
+		border: 1px solid #EEEEEE;    width: 302rpx;
+	}
 	.box {
 		padding: 0 24rpx;
 		background: #ffffff;
@@ -140,7 +145,7 @@
 	}
 
 	.historylinecar {
-		font-weight: 400;
+		font-weight: 500;
 		font-size: 26rpx;
 		color: #1A1A1A;
 		line-height: 46rpx;
@@ -150,7 +155,7 @@
 	.historyLine {
 		
 		padding: 30rpx 0;
-		border-top: 1rpx solid #EEEEEE;
+		/* border-top: 1rpx solid #EEEEEE; */
 	}
 
 	.cont {
@@ -169,10 +174,11 @@ color: #FFFFFF;font-size: 28rpx;padding-left: 16rpx;
 		height: 98rpx;
 		background: #FFFFFF linear-gradient(132deg, #FF8635 0%, #FF4828 100%);
 		border-radius: 16rpx;
-		display: flex;justify-content: space-around;
+		display: flex;justify-content: center;
 	}
 	.topsx{
 		width: 2rpx;background: #ffffff;
+		margin-left: 85rpx;margin-right: 85rpx;
 		height: 54rpx;margin-top: 22rpx;
 	}
 	.topLine{

+ 9 - 5
pages/index/gearboxOil.vue

@@ -15,7 +15,7 @@
 			</view>
 		</view>
 		<view class="cont">
-			<view class="jiyouBox">
+			<view class="jiyouBox" v-if="loading">
 				<view class="jiyouTop">
 					<view class="jiyoutopTitle">变速箱油</view>
 					
@@ -133,6 +133,7 @@
                 MaintainPartList:[],
 				detail:'',
 				iStatusBarHeight:'',
+				loading:false,
 			}
 		},
 		onLoad(opt) {
@@ -158,11 +159,13 @@
 		  },
           queryMaintainPartList(){
 			 uni.showLoading({ title: '加载中'});
+			 this.loading=false;
 			 this.$http('partsByOpen/queryMaintainPartList', {
 			   groupId:this.optdata.id,
 			   componentCode:'007005',
 			   
 			  },'POST').then(res => {
+				  this.loading=true;
 				uni.hideLoading();
 				this.MaintainPartList=res.data
 			 })
@@ -190,7 +193,9 @@
 		min-height: 100vh;
 		background: #F4F5F7;
 	}
-
+    .jyimgBox{
+    	border: 1px solid #EEEEEE;    width: 302rpx;
+    }
 	.box {
 		padding: 0 24rpx;
 		background: #ffffff;
@@ -202,7 +207,7 @@
 	}
 
 	.historylinecar {
-		font-weight: 400;
+		font-weight: 500;
 		font-size: 26rpx;
 		color: #1A1A1A;
 		line-height: 46rpx;
@@ -210,9 +215,8 @@
 	}
 
 	.historyLine {
-	
 		padding: 30rpx 0;
-		border-top: 1rpx solid #EEEEEE;
+		/* border-top: 1rpx solid #EEEEEE; */
 	}
 
 	.cont {

+ 4 - 3
pages/index/goodsDetail.vue

@@ -12,7 +12,7 @@
 				
 			</swiper>
 	  	</view>
-		<view class="name">{{info.name}} | {{info.specificationModel}} | {{info.partsCode}}</view>
+		<view class="name" v-if="loading">{{info.name}} | {{info.specificationModel}} | {{info.partsCode}}</view>
 		<view style="height: 30rpx;background: #F4F5F7;"></view>
 		<view class="detail">
 			<view class="datailTitle">商品详情</view>
@@ -34,6 +34,7 @@
 				info:'',
 				iStatusBarHeight:'',
 				html:'',
+				 loading:false,
 			}
 		},
 		onLoad(opt) {
@@ -44,11 +45,11 @@
 		methods: {
            queryPartDetail(){
 			   uni.showLoading({ title: '加载中'});
+			   this.loading=false;
 			   this.$http('partsByOpen/queryPartDetail', {
 			     id:this.id,
-			   
-			     
 			    },'POST').then(res => {
+					this.loading=true;
 					uni.hideLoading();
 					this.info=res.data;
 					this.html = this.info.ozContent

+ 4 - 2
pages/index/history.vue

@@ -12,7 +12,7 @@
 				<view class="vinNum">{{item.vin}}</view>
 			</view>
 		  </view>
-		  <nodata v-if="historyList.length==0"></nodata>
+		  <nodata v-if="historyList.length==0&&loading"></nodata>
 	  </view>
 	</view>
 </template>
@@ -28,6 +28,7 @@
 			return {
 				historyList:[],
 				iStatusBarHeight:'',
+				loading:false,
 			}
 		},
 		onLoad(opt) {
@@ -41,11 +42,12 @@
 				}) 
 			},
            queryHistory(){
+			 this.loading=false;
 			 this.$http2('queryHistory', {
 			   
 			  
 			  },'POST').then(res => {
-							
+					this.loading=true;		
 					this.historyList=res.data
 			 })
            },

+ 11 - 3
pages/index/index.vue

@@ -3,7 +3,7 @@
 		<view class="top">
 			<view class="topNavBox">
 				<view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
-				<view class="indexnav">配件查询</view>
+				<view class="indexnav">用油查询</view>
 			</view>
 			<view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
 			<view style="height: 43px;"></view>
@@ -69,6 +69,7 @@
 				moreVinList:[],
 				historyList:[],
 				iStatusBarHeight:'',
+				openId:'',
 			}
 		},
 		onLoad() {
@@ -76,9 +77,15 @@
            var that=this;
 		   this.uniLogin()
            setTimeout(function(){
-           			  that.$refs.carModelView.getdata();
+           		that.$refs.carModelView.getdata();
            },500)
 		},
+		onShow() {
+				
+			if(this.openId){
+				this.queryHistory()
+			}
+		},
 		methods: {
 			
 			 uniLogin(){
@@ -97,6 +104,7 @@
 				  code:e.code,
 				 
 				 },'GET').then(res => {
+					 this.openId=res.data.openId;
 					 uni.setStorage({
 					 	key: 'wxdata',
 					 	data: res.data,
@@ -300,7 +308,7 @@
 	text-align: center;
 }
 .historybox{
-	padding: 0 24rpx;    margin-top: -80rpx;
+	padding: 0 24rpx;    margin-top: -85rpx;
 }
 .history{
 	background: #FFFFFF;

+ 10 - 2
pages/index/search.vue

@@ -5,7 +5,7 @@
 		  <view class="searchInputBox" >
 		  	<image src="../../static/img/icon_search.png" mode="" class="simg"></image>
 		  	<input v-model="value" type="text"  placeholder="请输入车辆品牌、车系或VIN码" 
-			placeholder-class="ip" class="ssinput" @confirm="searchFn">
+			placeholder-class="ip" class="ssinput" @confirm="searchFn" focus>
 		  </view>
 		  <view class="searchBtn" @click="searchFn">
 		  	搜索
@@ -49,6 +49,8 @@
 	  </view>
 	  <view class="popupone popupTwo" @click="popupcTwo" v-if="popupTwoShow">
 	  	<view class="popup-content" @click.stop="">
+			<view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
+			<view style="height: 44px;"></view>
 	  		<view style="">
 	  			<!-- <view class="manufactorP">{{displacement}}</view> -->
 				<view class="manufactorPTow"> <span>{{displacement}}</span>  
@@ -92,10 +94,15 @@
 				isVin:'',
 				vin:'',
 				iStatusBarHeight:'',
+				focusKuwei:false,
 			}
 		},
 		onLoad(opt) {
          this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
+		  setTimeout(() => {  
+		            this.focusKuwei=true;
+		  }, 500)
+		
 		},
 		methods: {
 		   goDetal(e){
@@ -122,10 +129,11 @@
 			   }
 		   },
 		   popuponeBtn(item){
-			   console.log(item.displacementList)
+			 
 			   this.displacementList=item.displacementList;
 			   this.displacement=item.title;
 			   this.popupTwoShow=true;
+			     console.log( this.displacementList)
 		   },
 		   poneHide(){
 			   this.popupTwoShow=false;