guo 2 years ago
parent
commit
0adc7b1ec8

+ 48 - 48
pages.json

@@ -35,114 +35,114 @@
 				"enablePullDownRefresh": true
 			}
 		}
-	    ,{
-            "path" : "pages/mobile/OemDetail",
+	    ,{
+            "path" : "pages/mobile/OemDetail",
             "style" :                                                                                    
             {
                 "navigationBarTitleText": "OEM零件详情",
                 "enablePullDownRefresh": true
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/OemSearch",
+            
+        }
+        ,{
+            "path" : "pages/mobile/OemSearch",
             "style" :                                                                                    
             {
                 "navigationBarTitleText": "OEM搜索",
                 "enablePullDownRefresh": true
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/CarModelList",
+            
+        }
+        ,{
+            "path" : "pages/mobile/CarModelList",
             "style" :                                                                                    
             {
                 "navigationBarTitleText": "适用车型",
                 "enablePullDownRefresh": true
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SonGroup",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SonGroup",
             "style" :                                                                                    
             {
                 "navigationBarTitleText": "选择子组",
                 "enablePullDownRefresh": true
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/CarDetail",
+            
+        }
+        ,{
+            "path" : "pages/mobile/CarDetail",
             "style" :                                                                                    
             {
-                "navigationBarTitleText": "车详情",
+                "navigationBarTitleText": "车详情",
                 "enablePullDownRefresh": false
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SelectCarModel",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SelectCarModel",
             "style" :                                                                                    
             {
                 "navigationBarTitleText": "选择品牌",
                 "enablePullDownRefresh": false
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SelectCarTwo",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SelectCarTwo",
             "style" :                                                                                    
             {
             
                 "navigationStyle": "custom"
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SelectCarThree",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SelectCarThree",
             "style" :                                                                                    
             {
                 "navigationStyle": "custom"
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SelectCarFour",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SelectCarFour",
             "style" :                                                                                    
             {
                 "navigationStyle": "custom"
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SelectCarFive",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SelectCarFive",
             "style" :                                                                                    
             {
                 "navigationStyle": "custom"
             }
-            
-        }
-        ,{
-            "path" : "pages/mobile/SelectCarSix",
+            
+        }
+        ,{
+            "path" : "pages/mobile/SelectCarSix",
             "style" :                                                                                    
             {
                 "navigationStyle": "custom"
             }
-            
+            
         },{
 			"path": "pages/mobile/vinDetail",
 			"style": {
 				"navigationBarTitleText": "车型件",
 				"enablePullDownRefresh": true
 			}
-		}
-        
+		}
+        
     ],
 	"globalStyle": {
 		"navigationBarTextStyle": "black",
 		"navigationBarTitleText": "VIN查询",
-		"navigationBarBackgroundColor": "#F8F8F8",
-		"backgroundColor": "#F8F8F8"
+		"navigationBarBackgroundColor": "#FFFFFF",
+		"backgroundColor": "#FFFFFF"
 	},
 	"uniIdRouter": {}
 }

+ 38 - 6
pages/mobile/CarDetail.vue

@@ -7,25 +7,25 @@
 					<view class="titleBox">分组1</view>
 					<view class="comtent2">
 						<view class="left2">标题</view>
-						<view class="right2">1201D0</view>
+						<view class="right2"></view>
 					</view>
 					<view class="comtent2">
 						<view class="left2">零件编号</view>
-						<view class="right2">12</view>
+						<view class="right2">{{mesData.partsnum}}</view>
 					</view>
 					
 					<view class="comtent2">
 						<view class="left2">名称</view>
-						<view class="right2">1201D0</view>
+						<view class="right2">{{mesData.caption}}</view>
 					</view>
 					<view class="comtent2">
 						<view class="left2">位置</view>
-						<view class="right2">12</view>
+						<view class="right2">{{weizhi}}</view>
 					</view>
 					
 					<view class="comtent2">
 						<view class="left2">用量</view>
-						<view class="right2">1201D0</view>
+						<view class="right2">{{yongliang}}</view>
 					</view>
 					
 								
@@ -39,11 +39,41 @@
 	export default {
 		data() {
 			return {
-				itemList:[1,2,3,4]
+				epc_id: '',
+				partsnum: '',
+				weizhi: '',
+				yongliang: '',
+				mesData:{}
 			}
 		},
+		onLoad(opt) {
+			console.log('opt+',opt);
+			this.epc_id = opt.epc_id;
+			this.partsnum = opt.partsnum;
+			this.weizhi = opt.weizhi;
+			this.yongliang = opt.yongliang;
+			this.getItemData();
+		},
 		methods: {
 			
+			// 配件信息
+			getItemData() {
+				uni.showLoading({
+					title: '加载中'
+				});
+				this.$http('advancedEpc/generalEpc/info', {
+					epc_id: this.epc_id,
+					partsnum: this.partsnum,
+			
+				}, 'GET').then(res => {
+					uni.hideLoading();
+			
+					this.mesData = res.data.result;
+			
+			
+			
+				});
+			},
 		}
 	}
 </script>
@@ -53,6 +83,8 @@
 		min-height: 100vh;
 		background: #F4F5F7;
 		padding-top: 20rpx;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 	.mainBox {
 		background: #FFFFFF;

+ 5 - 3
pages/mobile/CarModelList.vue

@@ -127,7 +127,9 @@
 	.box {
 		min-height: 100vh;
 		background: #F4F5F7;
-		padding-top: 20rpx;
+		padding-top: 20rpx;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.mainBox {
@@ -138,7 +140,7 @@
 	.oneBox {
 		display: flex;
 		justify-content: space-between;
-		align-items: center;
+		align-items: baseline;
 		font-size: 26rpx;
 		padding-bottom: 20rpx;
 	}
@@ -177,6 +179,6 @@
 	.right2 {
 		width: 80%;
 		color: #333333;
-
+		margin-right: 20rpx;
 	}
 </style>

+ 150 - 132
pages/mobile/OemDetail.vue

@@ -10,44 +10,46 @@
 
 			</view>
 		</scroll-view>
-
+		
 		<!-- 配件信息 -->
 		<view class="mainBox" v-if="tabIndex==0">
-			<view class="comtent">
-				<view class="left">零件编号</view>
-				<view class="right">{{mesData.partsnum}}</view>
-			</view>
-			<view class="comtent">
-				<view class="left">名称</view>
-				<view class="right">{{mesData.caption}}</view>
-			</view>
-			<view class="comtent">
-				<view class="left">位置</view>
-				<view class="right">{{weizhi}}</view>
-			</view>
-			<view class="comtent">
-				<view class="left">用量</view>
-				<view class="right">{{yongliang}}</view>
-			</view>
-			<view class="comtent">
-				<view class="left">备注</view>
-				<view class="right">{{mesData.remark}}</view>
-			</view>
-			<view class="comtent">
-				<view class="left">英文名称</view>
-				<view class="right">{{mesData.remark}}</view>
-			</view>
-			<view class="comtent">
-				<view class="left">适用车型代码</view>
-				<view class="right"></view>
-			</view>
-			<view class="comtent">
-				<view class="left">是否颜色配件</view>
-				<view class="right">否</view>
-			</view>
-			<view class="comtent">
-				<view class="left">4S价格</view>
-				<view class="right" style="color: #FF4F00; font-weight: bold;">¥{{mesData.price}}</view>
+			<view class="pei">
+				<view class="comtent">
+					<view class="left">零件编号</view>
+					<view class="right">{{mesData.partsnum}}</view>
+				</view>
+				<view class="comtent">
+					<view class="left">名称</view>
+					<view class="right">{{mesData.caption}}</view>
+				</view>
+				<view class="comtent">
+					<view class="left">位置</view>
+					<view class="right">{{weizhi}}</view>
+				</view>
+				<view class="comtent">
+					<view class="left">用量</view>
+					<view class="right">{{yongliang}}</view>
+				</view>
+				<view class="comtent">
+					<view class="left">备注</view>
+					<view class="right">{{mesData.remark}}</view>
+				</view>
+				<view class="comtent">
+					<view class="left">英文名称</view>
+					<view class="right">{{mesData.remark}}</view>
+				</view>
+				<view class="comtent">
+					<view class="left">适用车型代码</view>
+					<view class="right"></view>
+				</view>
+				<view class="comtent">
+					<view class="left">是否颜色配件</view>
+					<view class="right">否</view>
+				</view>
+				<view class="comtent">
+					<view class="left">4S价格</view>
+					<view class="right" style="color: #FF4F00; font-weight: bold;">¥{{mesData.price}}</view>
+				</view>
 			</view>
 
 		</view>
@@ -87,92 +89,96 @@
  -->
 
 		<!-- 通用件 -->
-		<view class="mainBox" v-if="tabIndex==1" style="margin-top: 0rpx; padding: 0rpx">
-			<view class="topTitle"><span style="color: #FF3B30;">*</span>通用件数据仅供参考,采购前请谨慎核对是否为相同配件</view>
-
-			<view class="workBox2" v-for="(item,index) in tongyongList" :key="index">
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2">品牌:</view>
-						<view class="right2">{{item.brand}}</view>
-					</view>
-					<view class="comtent2">
-						<view class="left2" style="width: 26%;">零件号:</view>z
-						<view class="right2">{{item.partsnum}}</view>
-					</view>
-				</view>
-
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2">名称:</view>
-						<view class="right2">{{item.description}}</view>
-					</view>
-					<view class="comtent2">
-						<view class="left2">价格:</view>
-						<view class="right2">{{item.price}}</view>
-					</view>
-				</view>
-
-
+		<view class="mainBox" v-if="tabIndex==1">
+			<view class="tong">
+				<view class="topTitle"><span style="color: #FF3B30;">*</span>通用件数据仅供参考,采购前请谨慎核对是否为相同配件</view>
+				
+				<view class="workBox2" v-for="(item,index) in tongyongList" :key="index">
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2">品牌:</view>
+							<view class="right2">{{item.brand}}</view>
+						</view>
+						<view class="comtent2">
+							<view class="left2" style="width: 26%;">零件号:</view>z
+							<view class="right2">{{item.partsnum}}</view>
+						</view>
+					</view>
+				
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2">名称:</view>
+							<view class="right2">{{item.description}}</view>
+						</view>
+						<view class="comtent2">
+							<view class="left2">价格:</view>
+							<view class="right2">{{item.price}}</view>
+						</view>
+					</view>
+				
+				
+				</view>
 			</view>
 		</view>
 
 		<!-- EPC车型 -->
-		<view class="mainBox" v-if="tabIndex==2" style="margin-top: 0rpx; padding: 0rpx">
-			<view class="topTitle">共<span style="color: #FF3B30;">{{epc_Count}}</span>条</view>
-
-			<view class="workBox2" v-for="(item,index) in epcList" :key="index">
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2">名称:</view>
-						<view class="right2">{{item.caption}}</view>
-					</view>
-					<view class="comtent2">
-						<view class="left2">车型:</view>z
-						<view class="right2">{{item.vin_11}}</view>
-					</view>
-				</view>
-
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2">年份:</view>
-						<view class="right2">{{item.year}}</view>
-					</view>
-					<view class="comtent2">
-						<view class="left2" style="width: 28%;">发动机:</view>
-						<view class="right2">{{item.engine_prefix}}</view>
-					</view>
-				</view>
-
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2" style="width: 28%;">变数箱:</view>
-						<view class="right2">{{item.trans}}</view>
-					</view>
-					<view class="comtent2">
-						<view class="left2">地区:</view>
-						<view class="right2">{{item.area}}</view>
-					</view>
-				</view>
-
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2">配置:</view>
-						<view class="right2">{{item.equips}}</view>
-					</view>
-					<view class="comtent2">
-						<view class="left2">级别:</view>
-						<view class="right2">{{item.grade}}</view>
-					</view>
-				</view>
-
-				<view class="oneBox">
-					<view class="comtent2">
-						<view class="left2" style="width: 35%;">模型代码:</view>
-						<view class="right2">{{item.model_code}}</view>
-					</view>
-
-				</view>
+		<view class="mainBox" v-if="tabIndex==2">
+			<view class="epc">
+				<view class="topTitle">共<span style="color: #FF3B30;">{{epc_Count}}</span>条</view>
+				
+				<view class="workBox2" v-for="(item,index) in epcList" :key="index">
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2">名称:</view>
+							<view class="right2">{{item.caption}}</view>
+						</view>
+						<view class="comtent2">
+							<view class="left2">车型:</view>
+							<view class="right2">{{item.vin_11}}</view>
+						</view>
+					</view>
+				
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2">年份:</view>
+							<view class="right2">{{item.year}}</view>
+						</view>
+						<view class="comtent2">
+							<view class="left2" style="width: 28%;">发动机:</view>
+							<view class="right2">{{item.engine_prefix}}</view>
+						</view>
+					</view>
+				
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2" style="width: 28%;">变速箱:</view>
+							<view class="right2">{{item.trans}}</view>
+						</view>
+						<view class="comtent2">
+							<view class="left2">地区:</view>
+							<view class="right2">{{item.area}}</view>
+						</view>
+					</view>
+				
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2">配置:</view>
+							<view class="right2">{{item.equips}}</view>
+						</view>
+						<view class="comtent2">
+							<view class="left2">级别:</view>
+							<view class="right2">{{item.grade}}</view>
+						</view>
+					</view>
+				
+					<view class="oneBox">
+						<view class="comtent2">
+							<view class="left2" style="width: 35%;">模型代码:</view>
+							<view class="right2">{{item.model_code}}</view>
+						</view>
+				
+					</view>
+				</view>
 			</view>
 		</view>
 
@@ -187,12 +193,6 @@
  -->
 
 
-
-
-
-
-
-
 	</view>
 </template>
 
@@ -343,14 +343,20 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #F4F5F7;
+		background: #F4F5F7;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
+		
 	}
 
 	.scroll-Y {
 		white-space: nowrap;
 		width: 100%;
 		height: 90rpx;
-		background-color: #FFFFFF;
+		background-color: #FFFFFF;
+		position: fixed;
+		z-index: 111;
+		
 	}
 
 	.tab {
@@ -390,12 +396,23 @@
 	}
 
 	.mainBox {
-		margin-top: 20rpx;
-		background: #FFFFFF;
+		background: #F4F5F7;
 		min-height: 90vh;
-		padding: 20rpx 24rpx;
+		width: 100%;
+		padding-top: 90rpx;
+	}
+	.pei{
+		background: #FFFFFF;
+		padding: 20rpx 24rpx;
+		margin-top: 20rpx;
+	}
+	.tong{
+		background: #FFFFFF;
+		
+	}
+	.epc{
+		background: #FFFFFF;
 	}
-
 	.comtent {
 		padding-bottom: 30rpx;
 		display: flex;
@@ -425,7 +442,7 @@
 	.oneBox {
 		display: flex;
 		justify-content: space-between;
-		align-items: center;
+		align-items: baseline;
 		font-size: 26rpx;
 		padding-bottom: 20rpx;
 	}
@@ -461,7 +478,8 @@
 
 	.right2 {
 		width: 80%;
-		color: #333333;
+		color: #333333;
+		margin-right: 20rpx;
 	}
 
 	.workBox3 {

+ 3 - 1
pages/mobile/OemSearch.vue

@@ -120,7 +120,9 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #FFFFFF;
+		background: #FFFFFF;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.brand {

+ 3 - 1
pages/mobile/SelectCarFive.vue

@@ -68,7 +68,9 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #ffffff;
+		background: #ffffff;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.zdyNavBox {

+ 3 - 1
pages/mobile/SelectCarFour.vue

@@ -72,7 +72,9 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #ffffff;
+		background: #ffffff;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.zdyNavBox {

+ 3 - 1
pages/mobile/SelectCarModel.vue

@@ -179,7 +179,9 @@ export default {
 <style scoped lang="scss">
 	.box{
 		min-height: 100vh;
-		background:#F4F5F7 ;
+		background:#F4F5F7;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 	
 	.baiheibackImg{

+ 4 - 2
pages/mobile/SelectCarSix.vue

@@ -100,7 +100,9 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #ffffff;
+		background: #ffffff;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.zdyNavBox {
@@ -198,7 +200,7 @@
 
 	.backTxt {
 		color: #3F90F7;
-		font-weight: 400;
+		
 		font-size: 24rpx;
 		line-height: 33rpx;
 	}

+ 3 - 1
pages/mobile/SelectCarThree.vue

@@ -64,7 +64,9 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #ffffff;
+		background: #ffffff;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.zdyNavBox {

+ 3 - 1
pages/mobile/SelectCarTwo.vue

@@ -81,7 +81,9 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #ffffff;
+		background: #ffffff;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.zdyNavBox {

+ 5 - 3
pages/mobile/SonGroup.vue

@@ -4,9 +4,9 @@
 
 			<view class="workBox2" v-for="(item,index) in itemList" :key="index">
 				<view class="leftBox">
-					<view class="name">{{item.name}}</view>
+					<view class="name">{{item.caption}}</view>
 					<view @click="goModelThree(item)" class="code">{{item.partnum}}</view>
-					<view class="comment">{{item.caption}}</view>
+					<view class="comment">{{item.name}}</view>
 					<view class="comment">{{item.group}}</view>
 				</view>
 				<image src="../../static/img/rightArrow.png" mode="" style="width: 12rpx; height: 20rpx"></image>
@@ -83,7 +83,9 @@
 	.box {
 		min-height: 100vh;
 		background: #F4F5F7;
-		padding-top: 20rpx;
+		padding-top: 20rpx;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.mainBox {

+ 11 - 7
pages/mobile/group.vue

@@ -11,8 +11,8 @@
 		
 				</view>
 				<view class="zdyNavTitle">车型件</view>
-				<view class="zdyNavRight" @click="goOemSearch()">OEM搜索</view>
-				<!-- <view style="width: 10rpx;"></view> -->
+				<view v-if="carPeizhi.length != 0" class="zdyNavRight" @click="goOemSearch()">OEM搜索</view>
+				<view v-else style="width: 50rpx;"></view>
 			</view>
 		</view>
 		<view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
@@ -31,10 +31,10 @@
 						<view class="vinB">VIN</view>
 						<view class="vinNum">{{vin}}</view>
 					</view>
-					<view class="vinBox2">
-						<view class="detail" @click="goCarDetail()">车详情</view>
-						<image src="../../static/img/icon_arrow_blue_r@2x.png" mode="" style="width: 12rpx; height: 20rpx"></image>
-					</view>
+					<!-- <view  v-if="carPeizhi.length != 0" class="vinBox2">
+						<view class="detail" @click="goCarDetail()">车详情</view>
+						<image src="../../static/img/icon_arrow_blue_r@2x.png" mode="" style="width: 24rpx; height: 24rpx"></image>
+					</view> -->
 				</view>
 			</view>
 		</view>
@@ -73,7 +73,8 @@
 				groupShow:false,
 				param:'',
 				token:'',
-				epc_id:''
+				epc_id:'',
+				carPeizhi:''
 			}
 		},
 		onLoad(opt) {
@@ -120,6 +121,7 @@
 			restrainsClick(item){
 				this.param=item.param;
 				this.token=item.token;
+				this.carPeizhi = item.combine_cp;
 				this.getcarVinGroup()
 			},
 			getcarVinGroup(){
@@ -184,6 +186,8 @@
 	.content{
 		background: #F4F5F7;
 		min-height: 100vh;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 	.zdyNavBox {
 		width: 100vw;

+ 4 - 1
pages/mobile/homePage.vue

@@ -86,7 +86,10 @@
 <style>
 	.box {
 		min-height: 100vh;
-		background: #ffffff;
+		background: #ffffff;
+		/* iOS 底部安全区 */
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
 	}
 
 	.zdyNavBox {

+ 8 - 6
pages/mobile/index.vue

@@ -4,10 +4,10 @@
 			<view class="inputBox">
 				<img src="../../static/img/icon_search.png" alt="" class="searchImg">
 				<input v-model="vin" type="text" placeholder="请输入17位车架号查询" class="topInput" @confirm="inputconfirm">
-				<image src="../../static/img/icon_camera.png" mode="" class="cameraImg"></image>
+				<!-- <image src="../../static/img/icon_camera.png" mode="" class="cameraImg"></image> -->
 			</view>
 		</view>
-		<view class="history">
+		<!-- <view class="history">
 			<view class="historyTop">
 				<view class="historyTopTxt">历史搜索</view>
 				<image src="../../static/img/icon_delete.png" mode="" class="historyDelImg"></image>
@@ -15,10 +15,8 @@
 			<view v-for="(item,index) in 3" class="historyLIneBox">
 				<view class="historyLIne" @click="gogroup2('LVHFC1663G6003140')">LVHFC1663G6003140</view>
 			</view>
-				
 			
-			
-		</view>
+		</view> -->
 	</view>
 </template>
 
@@ -26,7 +24,7 @@
 	export default {
 		data() {
 			return {
-				vin: ''
+				vin: 'LVHFC1663G6003140'
 			}
 		},
 		onLoad() {
@@ -52,6 +50,10 @@
 </script>
 
 <style scoped>
+	.comment{
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
+	}
 	.top{
 		height: 96rpx;
 		border-bottom: 1px solid #EEEEEE;

+ 34 - 12
pages/mobile/modelThree.vue

@@ -1,10 +1,19 @@
 <template>
 	<view class="content">
 		<view class="top">
-			<image class="topIMg" :src=imgUrl mode="">
-			</image>
-			<image @click="previewImage(imgUrl)" src="../../static/img/icon_fangda@2x.png" mode="" class="enlarge">
-			</image>
+			<!-- 轮播图 -->
+			<swiper class="swiper" :circular="true" :indicator-dots="true" indicator-active-color="#FF4F00"
+				v-if="bannerArr.length>0">
+				<swiper-item v-for="(item,index) in bannerArr">
+				
+					<image :src="item.pic_url" mode="" class="swpImg"></image>
+					
+					<image @click="previewImage(item.pic_url)" src="../../static/img/icon_fangda@2x.png" mode="" class="enlarge">
+					</image>
+					
+				</swiper-item>
+				
+			</swiper>
 		</view>
 		<view style="height: 20rpx;background: #F4F5F7;"></view>
 		<view class="mainBox">
@@ -28,7 +37,7 @@
 				<view class="name">{{item.description}}</view>
 				<view class="comment">{{item.remark}}</view>
 				<view class="forLine">
-					<view @click="goOemDetail(item)" class="code">{{item.extened}}</view>
+					<view @click="goOemDetail(item)" class="code">{{item.extened.join()}}</view>
 					<view class="price">4S店价:
 						<span class="orangePrice">¥ {{item.price}}</span>
 					</view>
@@ -51,7 +60,7 @@
 				oemSearch: '',
 				groupData: [],
 				itemList: [],
-				imgUrl: '',
+				bannerArr: [],
 				tabIndex: 1,
 				son_vin: '',
 				son_epc_id: '',
@@ -155,7 +164,7 @@
 					uni.hideLoading();
 
 					this.itemList = res.data.result.list.rows;
-					this.imgUrl = res.data.result.list.image_info[0].pic_url;
+					this.bannerArr = res.data.result.list.image_info;
 					console.log('itemList++', this.itemList);
 				});
 			},
@@ -176,7 +185,7 @@
 					uni.hideLoading();
 
 
-					this.imgUrl = res.data.result.list.image_info[0].pic_url;
+					this.bannerArr = res.data.result.list.image_info;
 
 					this.total_page = res.data.result.total_page;
 
@@ -224,10 +233,23 @@
 	}
 </script>
 
-<style scoped>
-	.topIMg {
-		width: 100%;
-		display: block;
+<style scoped>
+	.content{
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
+	}
+	.quanImg {
+		
+		width: 100vw;
+		height: 352rpx;
+	}
+	
+	.swiper,
+	.swiper-item,
+	.swpImg {
+		width: 100%;
+		height: 352rpx;
+		
 	}
 
 	.top {

+ 495 - 437
pages/mobile/modelTwo.vue

@@ -1,438 +1,496 @@
-<template>
-	<view class="content">
-		<view class="top">
-			<view class="topCont">
-				<view class="carBox">
-					<image src="../../static/img/nocar.png" mode="" class="carLogo"></image>
-					<view class="carTxt">{{brand_name}}</view>
-					<!-- <image src="../../static/img/jt.png" mode="" class="carJt"></image> -->
-				</view>
-				<view class="vinBox">
-					<view class="vinBox2">
-						<view class="vinB">VIN</view>
-						<view class="vinNum">{{vin}}</view>
-					</view>
-					<view class="vinBox2">
-						<view class="detail" @click="goCarDetail()">车辆详情</view>
-						<image src="../../static/img/icon_arrow_blue_r@2x.png" mode="" style="width: 12rpx; height: 20rpx"></image>
-					</view>
-				</view>
-			</view>
-		</view>
-		<view class="mainBox">
-			<view class="maintitle">{{caption}}
-			   <view class="backBox">
-			   	  <image src="../../static/img/icon_arrow_blue_l@2x.png" mode="" class="backImg"></image>
-				  <view class="backTxt">返回总组</view>
-			   </view>
-			</view>
-			<view class="searchBox" v-if="lastShow">
-				<view class="inputBox">
-					<img src="../../static/img/icon_search.png" alt="" class="searchImg">
-					<input type="text" placeholder="快速查找子组" class="topInput" v-model="childrenss" @confirm="childrenkeyup">
-				</view>
-			</view>
-			
-			<view class="mainLine" v-for="(item,index) in childrenList" @click="goThree(item,index)" v-if="lastShow">
-				<view class="lineLeft">
-					<image class="lineIMg" :src="item.image_url" v-if="item.image_url" mode="aspectFit"></image>
-					<image  class="lineIMg" src="../../static/img/noimg.png" v-else mode="aspectFit"></image>
-				</view>
-				<view class="lineRIght">
-					<view class="lineName">{{item.caption}}</view>
-					<view class="lineBm">{{item.code}}</view>
-					<view class="linejs">{{item.remark}}</view>
-				</view>
-				
-			
-			</view>
-			<view class="mainBox" v-if="restrainShow1">
-				<view class="mainLine2" v-for="(item,index) in restrainList1" @click="restrainClickOne(item)">
-					<view class="lineName2">{{item.caption}}</view>
-					<image src="../../static/img/jt.png" mode="" class="mainLineJt"></image>
-				</view>
-			</view>
-			<view class="mainBox" v-if="restrainShow2">
-				<view class="mainLine2" v-for="(item,index) in restrainList2" @click="restrainClickTwo(item)">
-					<view class="lineName2">{{item.caption}}</view>
-					<image src="../../static/img/jt.png" mode="" class="mainLineJt"></image>
-				</view>
-			</view>
-		</view>
-		
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				vin: '',
-				brand_name:'',
-				access_time:'',
-				zzTime:'',
-				caption:'',
-				param:'',
-				token:'',
-				list:'',
-				restrainShow1:false,
-				restrainList1:'',
-				restrainShow1:false,
-				restrainList1:'',
-				lastShow:false,
-				childrenList:'',
-				oldList:'',
-				childrenss:'',
-			}
-		},
-		onLoad(opt) {
-           this.vin=opt.vin;
-		   this.zzTime=opt.zzTime;
-		   this.param=opt.param;
-		   this.token=opt.token;
-		   this.getData()
-		},
-		methods: {
-			restrainClickOne(item){
-				this.param=item.param;
-				this.token=item.token;
-				if(item.next_restrain==1){
-				  this.getYsone()
-				}else{
-				 this.getYsDlist()
-				}
-			},
-			
-			restrainClickTwo(item){
-				this.param=item.param;
-				this.token=item.token;
-				if(item.next_restrain==1){
-				  this.getYsDlist()
-				}else{
-				  this.getYsDlist()
-				}
-			},
-			getYsDlist(){
-				uni.showLoading({
-					title: '加载中'
-				});
-				this.$http('advancedEpc/getSubgroup', {
-					vin:this.vin,
-					access_time:this.access_time,
-					param:this.param,
-					token:this.token
-					
-				}, 'GET').then(res => {
-					uni.hideLoading();
-					//console.log(res.data.number);
-					if(res.data.number==200||res.data.number==5212){
-					     this.caption=res.data.result.caption;
-						 this.brand_name=res.data.result.brand_name;
-						 this.access_time=res.data.result.access_time;
-						 this.restrainShow2=false;
-						 this.restrainShow1=false;
-						 this.lastShow=true;
-						 this.childrenList=res.data.result.list;
-						 this.oldList= this.childrenList
-						
-					}else{
-					   uni.showToast({
-					   	title: res.data.message,
-					   	icon: 'none',
-					   	duration: 3000
-					   });
-					}
-							
-				});
-			},
-			getYsone(){
-				uni.showLoading({
-					title: '加载中'
-				});
-				this.$http('advancedEpc/getSubgroup', {
-					vin:this.vin,
-					access_time:this.access_time,
-					param:this.param,
-					token:this.token
-					
-				}, 'GET').then(res => {
-					uni.hideLoading();
-					//console.log(res.data.number);
-					if(res.data.number==200||res.data.number==5212){
-					     this.caption=res.data.result.caption;
-						 this.brand_name=res.data.result.brand_name;
-						 this.access_time=res.data.result.access_time;
-						if(res.data.result.level_identify=='group_restrain'||res.data.result.level_identify=='subgroup'){  //约束
-						  console.log("约束2")
-						  this.restrainShow2=true;
-						  this.restrainShow1=false;
-						  this.restrainList2=res.data.result.list;
-						 
-						}else{
-						   this.lastShow=true;
-						   this.childrenList=res.data.result.list;
-						   this.oldList= this.childrenList
-						}
-					}else{
-					   uni.showToast({
-					   	title: res.data.message,
-					   	icon: 'none',
-					   	duration: 3000
-					   });
-					}
-							
-				});
-			},
-			getData(){
-				uni.showLoading({
-					title: '加载中'
-				});
-				this.$http('advancedEpc/getSubgroup', {
-					vin:this.vin,
-					access_time:this.zzTime,
-					param:this.param,
-					token:this.token
-					
-				}, 'GET').then(res => {
-					uni.hideLoading();
-					//console.log(res.data.number);
-					if(res.data.number==200||res.data.number==5212){
-					     this.caption=res.data.result.caption;
-						 this.brand_name=res.data.result.brand_name;
-						 this.access_time=res.data.result.access_time;
-						if(res.data.result.level_identify=='group_restrain'||res.data.result.level_identify=='subgroup'){  //约束
-						  console.log("约束1")
-						  this.restrainShow1=true;
-						  this.restrainList1=res.data.result.list;
-						}else{
-						   this.lastShow=true;
-						   this.childrenList=res.data.result.list;
-						   this.oldList= this.childrenList
-						}
-					}else{
-					   uni.showToast({
-					   	title: res.data.message,
-					   	icon: 'none',
-					   	duration: 3000
-					   });
-					}
-							
-				});
-			},
-			goCarDetail(){
-				uni.navigateTo({
-					url:'CarDetail'
-				})
-			},
-             goThree(item,index){
-				 var that=this;
-				 uni.setStorage({
-				 	key: 'childrenList',
-				 	data: that.childrenList,
-				 	 success: function () {
-				 	  uni.navigateTo({
-				 	  	url:'vinDetail?vin='+that.vin+'&token='+item.token+'&param='+item.param+'&access_time='+that.access_time+'&tabIndex='+index
-				 	  })
-				 	 }
-				 }); 
-				 
-				 
-				 
-			 },
-			 childrenkeyup(){
-				 this.childrenList=this.oldList;
-				 if(this.childrenss==''){
-				 
-				  this.childrenList=this.oldList;
-				 }else{
-				 
-				     this.childrenList=this.query(this.childrenList,this.childrenss,'caption')
-				 
-				 }
-			 },
-			 query(list, keyWord, attribute = 'caption') {
-			   const reg = new RegExp(keyWord) // 创建正则表达式
-			   const arr = []
-			   for (let i = 0; i < list.length; i++) {
-			     if (reg.test(list[i][attribute])) {
-			       arr.push(list[i])
-			     }
-			   }
-			   return arr
-			 
-			 },
-		}
-	}
-</script>
-
-<style scoped>
-	.searchImg{
-		width: 40rpx;
-		height: 40rpx;
-		margin-top: 16rpx;
-		margin-left: 20rpx;
-	}
-	.searchBox{
-		padding-top:24rpx ;
-	}
-	.inputBox{
-		width: 702rpx;
-		height: 72rpx;
-		background: #F4F5F7;
-		border-radius: 36rpx;
-		margin-left: 24rpx;
-		display:flex;
-		position: relative;
-	}
-	.topInput{
-		font-size: 28rpx;
-		height: 72rpx;
-		line-height: 72rpx;
-		padding-left: 16rpx;
-		width: 500rpx;
-	}
-	.content{
-		background: #F4F5F7;
-		min-height: 100vh;
-	}
-	.top{
-		padding: 20rpx 0;
-	}
-	.topCont{
-		width: 750rpx;
-		height: 185rpx;
-		background: #FFFFFF;
-	}
-	.carLogo{
-		width: 72rpx;height: 72rpx;
-	}
-	.carTxt{
-		font-size: 28rpx;
-		font-family: PingFangSC-Medium, PingFang SC;
-		font-weight: 500;
-		color: #333333;
-		line-height: 36rpx;
-		width: 606rpx;
-	}
-	.carJt{
-		width: 25rpx;
-		height: 24rpx;
-		margin-top: 6rpx;
-	}
-	.carBox{
-		display: flex;
-		justify-content: space-between;
-		padding: 30rpx 24rpx 24rpx 24rpx;
-	}
-	.vinBox{
-		display: flex;
-		justify-content: space-between;
-		padding-left: 120rpx;
-		padding-right: 24rpx;
-	}
-	.vinBox2{
-		display: flex;	
-		align-items: center;
-	}
-	.detail{
-		color: #3F90F7;
-		font-size: 24rpx;
-		margin-right: 10rpx;
-	}
-	.vinB{
-		background: #F19D01;
-		width: 60rpx;
-		height: 30rpx;
-		text-align: center;
-		line-height: 30rpx;
-		color: #FFFFFF;
-		font-size: 22rpx;
-		border-radius: 5rpx;
-	}
-	.vinNum{
-		color: #999999;font-size: 24rpx;line-height: 30rpx;padding-left: 10rpx;
-	}
-	.mainBox{
-		background: #FFFFFF;
-	}
-	.maintitle{
-		font-size: 28rpx;
-		font-family: PingFangSC-Medium, PingFang SC;
-		font-weight: 500;
-		color: #333333;
-		text-align: center;
-		line-height: 88rpx;
-		border-bottom: 1px solid #EEEEEE;
-		position: relative;
-	}
-	.backImg{
-		width: 25rpx;height: 24rpx;margin-top: 4rpx;
-	}
-	.backBox{
-		display: flex;position: absolute;
-		left: 23rpx;top: 28rpx;
-	}
-	.backTxt{
-		color: #3F90F7;font-weight: 400;font-size: 24rpx;line-height: 33rpx;
-	}
-	.mainLineJt{
-		width: 25rpx;
-		height: 24rpx;
-		margin-top: 8rpx;
-	}
-	.mainLine{
-		display: flex;
-		
-		border-bottom: 1px solid #EEEEEE;
-		padding: 29rpx 24rpx;
-	}
-	.lineName{
-		font-size: 26rpx;
-		font-family: PingFangSC-Regular, PingFang SC;
-		font-weight: 500;
-		color: #333333;
-		line-height: 40rpx;
-		width: 570rpx;
-		word-wrap: break-word; /*强制换行*/
-		  overflow: hidden; /*超出隐藏*/
-		  text-overflow: ellipsis;/*隐藏后添加省略号*/
-		  white-space: nowrap;/*强制不换行*/
-	}
-	.mainLine2{
-		display: flex;
-		justify-content: space-between;
-		border-bottom: 1px solid #EEEEEE;
-		padding:24rpx;
-	}
-	.lineName2{
-		font-size: 28rpx;
-		font-family: PingFangSC-Regular, PingFang SC;
-		font-weight: 400;
-		color: #333333;
-		line-height: 40rpx;
-	}
-	.lineIMg{
-		width: 110rpx;height: 110rpx;
-	}
-	.lineRIght{
-		padding-left: 20rpx;
-	}
-	.lineBm{
-		font-size: 24rpx;
-		font-family: PingFangSC-Regular, PingFang SC;
-		font-weight: 400;
-		color: #999999;
-		padding: 10rpx 0;
-	}
-	.linejs{
-		font-size: 24rpx;
-		font-family: PingFangSC-Regular, PingFang SC;
-		font-weight: 400;
-		color: #999999;
-		width: 570rpx;
-		word-wrap: break-word; /*强制换行*/
-		  overflow: hidden; /*超出隐藏*/
-		  text-overflow: ellipsis;/*隐藏后添加省略号*/
-		  white-space: nowrap;/*强制不换行*/
-	}
+<template>
+	<view class="content">
+		<view class="top">
+			<view class="topCont">
+				<view class="carBox">
+					<image src="../../static/img/nocar.png" mode="" class="carLogo"></image>
+					<view class="carTxt">{{brand_name}}</view>
+					<!-- <image src="../../static/img/jt.png" mode="" class="carJt"></image> -->
+				</view>
+				<view class="vinBox">
+					<view class="vinBox2">
+						<view class="vinB">VIN</view>
+						<view class="vinNum">{{vin}}</view>
+					</view>
+					<!-- <view class="vinBox2">
+						<view class="detail" @click="goCarDetail()">车型详情</view>
+						<image src="../../static/img/icon_arrow_blue_r@2x.png" mode="" style="width: 24rpx; height: 24rpx"></image>
+					</view> -->
+				</view>
+			</view>
+		</view>
+		<view class="mainBox">
+			<view class="maintitle">{{caption}}
+				<view @click="goback" class="backBox">
+					<image src="../../static/img/icon_arrow_blue_l@2x.png" mode="" class="backImg"></image>
+					<view class="backTxt">返回总组</view>
+				</view>
+			</view>
+			<view class="searchBox" v-if="lastShow">
+				<view class="inputBox">
+					<img src="../../static/img/icon_search.png" alt="" class="searchImg">
+					<input type="text" placeholder="快速查找子组" class="topInput" v-model="childrenss"
+						@confirm="childrenkeyup">
+				</view>
+			</view>
+
+			<view class="mainLine" v-for="(item,index) in childrenList" @click="goThree(item,index)" v-if="lastShow">
+				<view class="lineLeft">
+					<image class="lineIMg" :src="item.image_url" v-if="item.image_url" mode=""></image>
+					<image class="lineIMg" src="../../static/img/noimg.png" v-else mode=""></image>
+				</view>
+				<view class="lineRIght">
+					<view class="lineName">{{item.caption}}</view>
+					<view class="lineBm">{{item.code}}</view>
+					<view class="linejs">{{item.remark}}</view>
+				</view>
+
+
+			</view>
+			<view class="mainBox" v-if="restrainShow1">
+				<view class="mainLine2" v-for="(item,index) in restrainList1" @click="restrainClickOne(item)">
+					<view class="lineName2">{{item.caption}}</view>
+					<image src="../../static/img/jt.png" mode="" class="mainLineJt"></image>
+				</view>
+			</view>
+			<view class="mainBox" v-if="restrainShow2">
+				<view class="mainLine2" v-for="(item,index) in restrainList2" @click="restrainClickTwo(item)">
+					<view class="lineName2">{{item.caption}}</view>
+					<image src="../../static/img/jt.png" mode="" class="mainLineJt"></image>
+				</view>
+			</view>
+		</view>
+
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				vin: '',
+				brand_name: '',
+				access_time: '',
+				zzTime: '',
+				caption: '',
+				param: '',
+				token: '',
+				list: '',
+				restrainShow1: false,
+				restrainList1: '',
+				restrainShow1: false,
+				restrainList1: '',
+				lastShow: false,
+				childrenList: '',
+				oldList: '',
+				childrenss: '',
+			}
+		},
+		onLoad(opt) {
+			this.vin = opt.vin;
+			this.zzTime = opt.zzTime;
+			this.param = opt.param;
+			this.token = opt.token;
+			this.getData()
+		},
+		methods: {
+			goback() {
+				console.log('返回');
+				uni.navigateBack({})
+			},
+			restrainClickOne(item) {
+				this.param = item.param;
+				this.token = item.token;
+				if (item.next_restrain == 1) {
+					this.getYsone()
+				} else {
+					this.getYsDlist()
+				}
+			},
+
+			restrainClickTwo(item) {
+				this.param = item.param;
+				this.token = item.token;
+				if (item.next_restrain == 1) {
+					this.getYsDlist()
+				} else {
+					this.getYsDlist()
+				}
+			},
+			getYsDlist() {
+				uni.showLoading({
+					title: '加载中'
+				});
+				this.$http('advancedEpc/getSubgroup', {
+					vin: this.vin,
+					access_time: this.access_time,
+					param: this.param,
+					token: this.token
+
+				}, 'GET').then(res => {
+					uni.hideLoading();
+					//console.log(res.data.number);
+					if (res.data.number == 200 || res.data.number == 5212) {
+						this.caption = res.data.result.caption;
+						this.brand_name = res.data.result.brand_name;
+						this.access_time = res.data.result.access_time;
+						this.restrainShow2 = false;
+						this.restrainShow1 = false;
+						this.lastShow = true;
+						this.childrenList = res.data.result.list;
+						this.oldList = this.childrenList
+
+					} else {
+						uni.showToast({
+							title: res.data.message,
+							icon: 'none',
+							duration: 3000
+						});
+					}
+
+				});
+			},
+			getYsone() {
+				uni.showLoading({
+					title: '加载中'
+				});
+				this.$http('advancedEpc/getSubgroup', {
+					vin: this.vin,
+					access_time: this.access_time,
+					param: this.param,
+					token: this.token
+
+				}, 'GET').then(res => {
+					uni.hideLoading();
+					//console.log(res.data.number);
+					if (res.data.number == 200 || res.data.number == 5212) {
+						this.caption = res.data.result.caption;
+						this.brand_name = res.data.result.brand_name;
+						this.access_time = res.data.result.access_time;
+						if (res.data.result.level_identify == 'group_restrain' || res.data.result.level_identify ==
+							'subgroup') { //约束
+							console.log("约束2")
+							this.restrainShow2 = true;
+							this.restrainShow1 = false;
+							this.restrainList2 = res.data.result.list;
+
+						} else {
+							this.lastShow = true;
+							this.childrenList = res.data.result.list;
+							this.oldList = this.childrenList
+						}
+					} else {
+						uni.showToast({
+							title: res.data.message,
+							icon: 'none',
+							duration: 3000
+						});
+					}
+
+				});
+			},
+			getData() {
+				uni.showLoading({
+					title: '加载中'
+				});
+				this.$http('advancedEpc/getSubgroup', {
+					vin: this.vin,
+					access_time: this.zzTime,
+					param: this.param,
+					token: this.token
+
+				}, 'GET').then(res => {
+					uni.hideLoading();
+					//console.log(res.data.number);
+					if (res.data.number == 200 || res.data.number == 5212) {
+						this.caption = res.data.result.caption;
+						this.brand_name = res.data.result.brand_name;
+						this.access_time = res.data.result.access_time;
+						if (res.data.result.level_identify == 'group_restrain' || res.data.result.level_identify ==
+							'subgroup') { //约束
+							console.log("约束1")
+							this.restrainShow1 = true;
+							this.restrainList1 = res.data.result.list;
+						} else {
+							this.lastShow = true;
+							this.childrenList = res.data.result.list;
+							this.oldList = this.childrenList
+						}
+					} else {
+						uni.showToast({
+							title: res.data.message,
+							icon: 'none',
+							duration: 3000
+						});
+					}
+
+				});
+			},
+			goCarDetail() {
+				uni.navigateTo({
+					url: 'CarDetail'
+				})
+			},
+			goThree(item, index) {
+				var that = this;
+				uni.setStorage({
+					key: 'childrenList',
+					data: that.childrenList,
+					success: function() {
+						uni.navigateTo({
+							url: 'vinDetail?vin=' + that.vin + '&token=' + item.token + '&param=' +
+								item.param + '&access_time=' + that.access_time + '&tabIndex=' + index
+						})
+					}
+				});
+
+
+
+			},
+			childrenkeyup() {
+				this.childrenList = this.oldList;
+				if (this.childrenss == '') {
+
+					this.childrenList = this.oldList;
+				} else {
+
+					this.childrenList = this.query(this.childrenList, this.childrenss, 'caption')
+
+				}
+			},
+			query(list, keyWord, attribute = 'caption') {
+				const reg = new RegExp(keyWord) // 创建正则表达式
+				const arr = []
+				for (let i = 0; i < list.length; i++) {
+					if (reg.test(list[i][attribute])) {
+						arr.push(list[i])
+					}
+				}
+				return arr
+
+			},
+		}
+	}
+</script>
+
+<style scoped>
+	.searchImg {
+		width: 40rpx;
+		height: 40rpx;
+		margin-top: 16rpx;
+		margin-left: 20rpx;
+	}
+
+	.searchBox {
+		padding-top: 24rpx;
+	}
+
+	.inputBox {
+		width: 702rpx;
+		height: 72rpx;
+		background: #F4F5F7;
+		border-radius: 36rpx;
+		margin-left: 24rpx;
+		display: flex;
+		position: relative;
+	}
+
+	.topInput {
+		font-size: 28rpx;
+		height: 72rpx;
+		line-height: 72rpx;
+		padding-left: 16rpx;
+		width: 500rpx;
+	}
+
+	.content {
+		background: #F4F5F7;
+		min-height: 100vh;
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
+	}
+
+	.top {
+		padding: 20rpx 0;
+	}
+
+	.topCont {
+		width: 750rpx;
+		height: 185rpx;
+		background: #FFFFFF;
+	}
+
+	.carLogo {
+		width: 72rpx;
+		height: 72rpx;
+	}
+
+	.carTxt {
+		font-size: 28rpx;
+		font-family: PingFangSC-Medium, PingFang SC;
+		font-weight: 500;
+		color: #333333;
+		line-height: 36rpx;
+		width: 606rpx;
+	}
+
+	.carJt {
+		width: 25rpx;
+		height: 24rpx;
+		margin-top: 6rpx;
+	}
+
+	.carBox {
+		display: flex;
+		justify-content: space-between;
+		padding: 30rpx 24rpx 24rpx 24rpx;
+	}
+
+	.vinBox {
+		display: flex;
+		justify-content: space-between;
+		padding-left: 120rpx;
+		padding-right: 24rpx;
+	}
+
+	.vinBox2 {
+		display: flex;
+		align-items: center;
+	}
+
+	.detail {
+		color: #3F90F7;
+		font-size: 24rpx;
+		margin-right: 10rpx;
+	}
+
+	.vinB {
+		background: #F19D01;
+		width: 60rpx;
+		height: 30rpx;
+		text-align: center;
+		line-height: 30rpx;
+		color: #FFFFFF;
+		font-size: 22rpx;
+		border-radius: 5rpx;
+	}
+
+	.vinNum {
+		color: #999999;
+		font-size: 24rpx;
+		line-height: 30rpx;
+		padding-left: 10rpx;
+	}
+
+	.mainBox {
+		background: #FFFFFF;
+	}
+
+	.maintitle {
+		font-size: 28rpx;
+		font-family: PingFangSC-Medium, PingFang SC;
+		font-weight: 500;
+		color: #333333;
+		text-align: center;
+		line-height: 88rpx;
+		border-bottom: 1px solid #EEEEEE;
+		position: relative;
+	}
+
+	.backImg {
+		width: 25rpx;
+		height: 24rpx;
+		margin-top: 4rpx;
+	}
+
+	.backBox {
+		display: flex;
+		position: absolute;
+		left: 23rpx;
+		top: 28rpx;
+	}
+
+	.backTxt {
+		color: #3F90F7;
+		font-size: 24rpx;
+		line-height: 33rpx;
+	}
+
+	.mainLineJt {
+		width: 25rpx;
+		height: 24rpx;
+		margin-top: 8rpx;
+	}
+
+	.mainLine {
+		display: flex;
+
+		border-bottom: 1px solid #EEEEEE;
+		padding: 29rpx 24rpx;
+	}
+
+	.lineName {
+		font-size: 26rpx;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 500;
+		color: #333333;
+		line-height: 40rpx;
+		width: 570rpx;
+		word-wrap: break-word;
+		/*强制换行*/
+		overflow: hidden;
+		/*超出隐藏*/
+		text-overflow: ellipsis;
+		/*隐藏后添加省略号*/
+		white-space: nowrap;
+		/*强制不换行*/
+	}
+
+	.mainLine2 {
+		display: flex;
+		justify-content: space-between;
+		border-bottom: 1px solid #EEEEEE;
+		padding: 24rpx;
+	}
+
+	.lineName2 {
+		font-size: 28rpx;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 400;
+		color: #333333;
+		line-height: 40rpx;
+	}
+
+	.lineIMg {
+		width: 100rpx;
+		height: 85rpx;
+	}
+
+	.lineRIght {
+		padding-left: 20rpx;
+	}
+
+	.lineBm {
+		font-size: 24rpx;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 400;
+		color: #999999;
+		padding: 10rpx 0;
+	}
+
+	.linejs {
+		font-size: 24rpx;
+		font-family: PingFangSC-Regular, PingFang SC;
+		font-weight: 400;
+		color: #999999;
+		width: 570rpx;
+		word-wrap: break-word;
+		/*强制换行*/
+		overflow: hidden;
+		/*超出隐藏*/
+		text-overflow: ellipsis;
+		/*隐藏后添加省略号*/
+		white-space: nowrap;
+		/*强制不换行*/
+	}
 </style>

+ 44 - 13
pages/mobile/vinDetail.vue

@@ -1,23 +1,42 @@
 <template>
 	<view class="content">
 		<view class="top">
-			<image class="topIMg" :src=imgUrl mode="">
-			</image>
-			<image @click="previewImage(imgUrl)" src="../../static/img/icon_fangda@2x.png" mode="" class="enlarge">
-			</image>
+			
+			<!-- 轮播图 -->
+			<swiper class="swiper" :circular="true" :indicator-dots="true" indicator-active-color="#FF4F00"
+				v-if="bannerArr.length>0">
+				<swiper-item v-for="(item,index) in bannerArr">
+				
+					<image :src="item.pic_url" mode="" class="swpImg"></image>
+					
+					<image @click="previewImage(item.pic_url)" src="../../static/img/icon_fangda@2x.png" mode="" class="enlarge">
+					</image>
+					
+				</swiper-item>
+				
+			</swiper>
+			
 		</view>
 		<view style="height: 20rpx;background: #F4F5F7;"></view>
 		<view class="mainBox">
 			<view v-if="oemSearch == false" class="mainTop">
-				<view class="arrowBox">
+				<view v-if="tabIndex > 1" class="arrowBox">
 					<image src="../../static/img/icon_arrow_blue_l@2x.png" mode="" class="arrow"></image>
 					<view class="title" @click="upGroup">上一组</view>
 				</view>
+				<view v-else class="arrowBox">
+					<image src="../../static/img/icon_arrow_jindian_l@2x.png" mode="" class="arrow"></image>
+					<view class="title" style="color: #999999;">上一组</view>
+				</view>
 				<view class="page">{{tabIndex}}/{{groupData.length}}</view>
-				<view class="arrowBox">
+				<view v-if="tabIndex < groupData.length" class="arrowBox">
 					<view class="title" @click="downGroup">下一组</view>
 					<image src="../../static/img/icon_arrow_blue_r@2x.png" mode="" class="arrow"></image>
 				</view>
+				<view v-else class="arrowBox">
+					<view class="title" style="color: #999999;">下一组</view>
+					<image src="../../static/img/icon_arrow_jindian_r@2x.png" mode="" class="arrow"></image>
+				</view>
 			</view> 
 
 			<view class="commentBox" v-for="(item,index) in itemList" :key="index">
@@ -51,7 +70,7 @@
 				oemSearch: '',
 				groupData: [],
 				itemList: [],
-				imgUrl: '',
+				bannerArr: [],
 				tabIndex: 1,
 				son_vin: '',
 				son_epc_id: '',
@@ -148,7 +167,7 @@
 					uni.hideLoading();
 
 					this.itemList = res.data.result.list.rows;
-					this.imgUrl = res.data.result.list.image_info[0].pic_url;
+					this.bannerArr = res.data.result.list.image_info;
 					console.log('itemList++', this.itemList);
 				});
 			},
@@ -168,7 +187,7 @@
 					uni.hideLoading();
 
 
-					this.imgUrl = res.data.result.list.image_info[0].pic_url;
+					this.bannerArr = res.data.result.list.image_info;
 
 					this.total_page = res.data.result.total_page;
 
@@ -217,11 +236,23 @@
 </script>
 
 <style scoped>
-	.topIMg {
+	.comment{
+		padding-bottom: constant(safe-area-inset-bottom);
+		padding-bottom: env(safe-area-inset-bottom);
+	}
+	.quanImg {
+		
+		width: 100vw;
+		height: 352rpx;
+	}
+	
+	.swiper,
+	.swiper-item,
+	.swpImg {
 		width: 100%;
-		display: block;
+		height: 352rpx;
+		
 	}
-
 	.top {
 		position: relative;
 	}
@@ -251,7 +282,7 @@
 	}
 
 	.arrow {
-		width: 25rpx;
+		width: 24rpx;
 		height: 24rpx;
 	}
 

BIN
static/img/icon_arrow_jindian_l@2x.png


BIN
static/img/icon_arrow_jindian_r@2x.png