twt 1 год назад
Родитель
Сommit
b210d153d2

+ 2 - 1
pages.json

@@ -3,7 +3,8 @@
 		{
 			"path": "pages/index/index",
 			"style": {
-				"navigationBarTitleText": "配件查询"
+				"navigationBarTitleText": "配件查询",
+				"navigationStyle": "custom"
 			}
 		},
 		{

+ 8 - 4
pages/index/carConfiguration.vue

@@ -1,10 +1,10 @@
 <template>
 	<view class="content">
-	  <view class="top">
+	  <view class="top" v-if="loading">
 	  	 <view class="carBrand">{{info.brand}}</view>
 		 <view class="carName">{{info.manufactor}}-{{info.carSeries}}-{{info.salesName}}</view>
 	  </view>
-	  <view class="box">
+	  <view class="box" v-if="loading">
 		  <view class="line">
 			  <view class="lineLeft">品牌</view>
 			  <view class="lineRight">{{info.brand}}</view>
@@ -59,6 +59,7 @@
 			return {
 				nLevelIDs:'',
 				info:'',
+				loading:false,
 			}
 		},
 		onLoad(opt) {
@@ -68,13 +69,15 @@
 		methods: {
            queryCarModelBynLevelID(){
 			   uni.showLoading({ title: '加载中'});
+			   this.loading=false;
 			   this.$http('matchingByOpen/queryCarModelBynLevelID', {
 			     nLevelIDs:this.nLevelIDs,
 			   
 			     
 			    },'POST').then(res => {
-			   	uni.hideLoading();
-			   	this.info=res.data
+			   	  uni.hideLoading();
+			   	  this.info=res.data;
+				  this.loading=true;
 			   })
 		   }
 		}
@@ -97,6 +100,7 @@
 	font-weight: 400;font-size: 28rpx;
 	color: #FFFFFF;padding-left: 24rpx;
 	line-height: 40rpx;padding-top: 26rpx;
+	padding-right: 24rpx;
 }
 .box{
 	width: 750rpx;

+ 1 - 1
pages/index/carModel.vue

@@ -506,7 +506,7 @@
 	        text-align: center;
 	        height:33rpx;
 	        width: 90rpx;
-	        font-size:24rpx;
+	        font-size:22rpx;
 	        font-weight:400;
 	        color:rgba(51,51,51,1);
 	        line-height:33rpx;

+ 3 - 2
pages/index/engineOil.vue

@@ -26,11 +26,12 @@
 				<view class="jylineBox">
 					<view class="jyline" v-for="(item,index) in MaintainPartList" @click="godetail(item)">
 						<view class="jyimgBox">
-							<image :src="item.imgs.split(',')[0]" mode="" class="jyimg"></image>
+							<image v-if="item.imgs.split(',')[0]" :src="item.imgs.split(',')[0]" mode="aspectFit" class="jyimg"></image>
+							<image v-else src="../../static/img/noimg.png" mode="aspectFit" class="jyimg"></image>
 						</view>
 						<view class="jyName">
 							<!-- <span class="best">最佳</span> -->
-							<span class="jyNametxt">{{item.name}} </span>
+							<span class="jyNametxt">{{item.name}} | {{item.specificationModel}} | {{item.partsCode}} </span>
 						</view>
 					</view>
 				</view>

+ 3 - 2
pages/index/gearboxOil.vue

@@ -15,11 +15,12 @@
 				<view class="jylineBox">
 					<view class="jyline" v-for="(item,index) in MaintainPartList" @click="godetail(item)">
 						<view class="jyimgBox">
-							<image :src="item.imgs.split(',')[0]" mode="" class="jyimg"></image>
+							<image v-if="item.imgs.split(',')[0]" :src="item.imgs.split(',')[0]" mode="aspectFit" class="jyimg"></image>
+							<image v-else src="../../static/img/noimg.png" mode="aspectFit" class="jyimg"></image>
 						</view>
 						<view class="jyName">
 							<!-- <span class="best">最佳</span> -->
-							<span class="jyNametxt">{{item.name}} </span>
+							<span class="jyNametxt">{{item.name}} | {{item.specificationModel}} | {{item.partsCode}} </span>
 						</view>
 					</view>
 				</view>

+ 27 - 2
pages/index/goodsDetail.vue

@@ -5,12 +5,13 @@
 				:duration="duration">
 				<swiper-item v-for="(item,index) in info.imgList">
 					<view class="swiper-item">
-						<image :src="item.imgPath" mode="aspectFit" class="swiper-itemImg"></image>
+						<image @click="showImgList(item.imgPath)" :src="item.imgPath" mode="aspectFit" class="swiper-itemImg"></image>
 					</view>
 				</swiper-item>
 				
 			</swiper>
 	  	</view>
+		<view class="name">{{info.name}} | {{info.specificationModel}} | {{info.partsCode}}</view>
 		<view style="height: 30rpx;background: #F4F5F7;"></view>
 		<view class="detail">
 			<view class="datailTitle">商品详情</view>
@@ -46,8 +47,25 @@
 					uni.hideLoading();
 					this.info=res.data
 			   })
+		   },
+		   showImgList(img){
+		   	var arr=[]
+		   	arr.push(img)
+		   	uni.previewImage({
+		   		urls: arr,
+		   		longPressActions: {
+		   			itemList: ['发送给朋友', '保存图片'],
+		   			success: function(data) {
+		   				console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
+		   			},
+		   			fail: function(err) {
+		   				console.log(err.errMsg);
+		   			}
+		   		}
+		   	});
 		   }
-		}
+		},
+		
 	}
 </script>
 
@@ -69,4 +87,11 @@
 	padding: 32rpx 24rpx;
 	font-size: 28rpx;
 }
+.name{
+	font-weight: 500;
+	color: #1A1A1A;
+	line-height: 40rpx;
+	font-size: 28rpx;
+	padding: 30rpx 24rpx;
+}
 </style>

+ 45 - 5
pages/index/index.vue

@@ -1,10 +1,16 @@
 <template>
 	<view class="content">
 		<view class="top">
+			<view class="topNavBox">
+				<view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
+				<view class="indexnav">配件查询</view>
+			</view>
+			<view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
+			<view style="height: 43px;"></view>
 			<view class="searchBox">
 				<view class="searchInputBox" @click="goSearch">
 					<image src="../../static/img/icon_search.png" mode="" class="simg"></image>
-					<input type="text" placeholder="请输入车型品牌或车系名称" placeholder-class="ip" class="ssinput">
+					<input type="text" placeholder="请输入车辆品牌、车系或VIN码" placeholder-class="ip" class="ssinput">
 				</view>
 				<view class="st" @click="stBtn">
 				   <image src="../../static/img/icon_shitu.png" mode="" class="stimg"></image>
@@ -36,7 +42,7 @@
 					<view class="ckcarTitle">请选择车型</view>
 					<image src="../../static/img/icon_quxiao.png" mode="" class="ckcarClose" @click="ckcarClose"></image>
 				</view>
-				<view class="ckcarlineBox"  v-for="(item,index) in moreVinList">
+				<view class="ckcarlineBox"  v-for="(item,index) in moreVinList" @click="gobyItem(item)">
 					<view class="ckcarline flex">
 						<view class="ckcarLeft">{{item.title}}</view>
 						<image src="../../static/img/icon_arrow.png" mode="" class="ckcarJtimg"></image>
@@ -62,9 +68,11 @@
 				vinNum:'',
 				moreVinList:[],
 				historyList:[],
+				iStatusBarHeight:'',
 			}
 		},
 		onLoad() {
+			this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
            var that=this;
 		   this.uniLogin()
            setTimeout(function(){
@@ -113,6 +121,12 @@
 				 	url:'/pages/index/byItem?nLevelID='+e.nLevelID+'&logo='+e.logo+'&value='+e.title+'&id='+e.groupID
 				 })
 			 },
+			 gobyItem(e){
+				 var nLevelID=e.nLevelIDs.split(',')[0]
+				 uni.navigateTo({
+				 	url:'/pages/index/byItem?nLevelID='+nLevelID+'&logo='+e.carModelInfo.logo+'&value='+e.title+'&id='+e.ids
+				 })
+			 },
              gohistory(){
 				 uni.navigateTo({
 				 	url:'/pages/index/history'
@@ -171,7 +185,12 @@
 				 }, 'POST').then(res => {
 					if(res.code!=1){
 						this.moreVinList=res.data;
-						this.ckCarShow=true;
+						if(this.moreVinList.length>1){
+								this.ckCarShow=true;
+						}else{
+							this.gobyItem(this.moreVinList[0])
+						}
+					
 						
 					}
 				 	 else {
@@ -188,6 +207,9 @@
 			 ckcarClose(){
 				 this.ckCarShow=false;
 			 }
+		},
+		onShareAppMessage(){
+				   
 		}
 	}
 </script>
@@ -233,9 +255,19 @@
 	min-height: 100vh;background: #F4F5F7;
 }
 .top{
-	width: 100%;height: 230rpx;
+	width: 100%;height: 400rpx;
 	background: url('http://dmsphoto.66km.com.cn/thFiles/DE1573A0-1C08-4243-8313-C0BA094406D0.png') no-repeat;
-	background-size: 100% 100%;
+	background-size: 100%;
+}
+.topNavBox{
+	background: #D53533;
+	width: 750rpx;
+	position: fixed;
+	top: 0;
+	left: 0;
+	z-index: 11;
+	background: url('http://dmsphoto.66km.com.cn/thFiles/DE1573A0-1C08-4243-8313-C0BA094406D0.png') no-repeat;
+	background-size: 100%;
 }
 .searchInputBox{
 	width: 634rpx;display: flex;
@@ -255,6 +287,7 @@
 }
 .ssinput{
 	font-size: 28rpx;font-weight: 400;padding-left: 24rpx;line-height: 80rpx;height: 80rpx;
+	width: 500rpx;
 }
 .ip{
 	color: #999999;
@@ -298,4 +331,11 @@
 	display: flex;justify-content: space-between;
 	padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
 }
+.indexnav{
+		height: 44px;
+		line-height: 44px;
+		text-align: center;
+		font-size: 36rpx;
+		color: #FFFFFF;
+	}
 </style>

+ 4 - 3
pages/index/maintenance.vue

@@ -36,8 +36,8 @@
 	  <view class="" v-if="tabindex==2">
 	  	<view class="pjTitleBox">
 			<view class="pjTitle">保养计划</view>
-			<view class="pjTitle">保养计划</view>
-			<view class="pjTitle">保养计划</view>
+			<view class="pjTitle">规格型号</view>
+			<view class="pjTitle">参考用量</view>
 		</view>
 		<view class="pjlineBox">
 			<view class="pjline" v-for="(item,index) in pjList">
@@ -230,7 +230,8 @@ color: #1A1A1A;font-size: 26rpx;
 		line-height: 93rpx;
 	}
 	.pjline{
-		display: flex;justify-content: space-between;padding: 15rpx 0;
+		display: flex;justify-content: space-between;padding: 20rpx 0;
+		border-bottom: 1px solid #EEEEEE;
 	}
 	.pjitem{
 		width: 33.3%;text-align: center;font-weight: 400;

+ 1 - 1
pages/index/search.vue

@@ -3,7 +3,7 @@
 	  <view class="sTopBox">
 		  <view class="searchInputBox" >
 		  	<image src="../../static/img/icon_search.png" mode="" class="simg"></image>
-		  	<input v-model="value" type="text"  placeholder="请输入车型品牌,车系名称或VIN码" 
+		  	<input v-model="value" type="text"  placeholder="请输入车辆品牌、车系或VIN码" 
 			placeholder-class="ip" class="ssinput" @confirm="searchFn">
 		  </view>
 		  <view class="searchBtn" @click="searchFn">

BIN
static/img/noimg.png


BIN
static/img/pic_empty_def.png