twt 1 year ago
parent
commit
472380e9be
7 changed files with 80 additions and 19 deletions
  1. 1 0
      main.js
  2. 1 1
      manifest.json
  3. 6 0
      pages.json
  4. 16 7
      pages/index/byItem.vue
  5. 6 1
      pages/index/carGroup.vue
  6. 30 10
      pages/index/engineOil.vue
  7. 20 0
      pages/index/index.vue

+ 1 - 0
main.js

@@ -9,6 +9,7 @@ App.mpType = 'app'
 import request from 'utils/request.js'
 import request from 'utils/request.js'
 Vue.prototype.$http = request.http
 Vue.prototype.$http = request.http
 Vue.prototype.$ajax = request.ajax
 Vue.prototype.$ajax = request.ajax
+Vue.prototype.$http2 = request.http2
 Vue.prototype.$baseURL = request.baseURL
 Vue.prototype.$baseURL = request.baseURL
 const app = new Vue({
 const app = new Vue({
   ...App
   ...App

+ 1 - 1
manifest.json

@@ -50,7 +50,7 @@
     "quickapp" : {},
     "quickapp" : {},
     /* 小程序特有相关 */
     /* 小程序特有相关 */
     "mp-weixin" : {
     "mp-weixin" : {
-        "appid" : "",
+        "appid" : "wxcf7344725e280322",
         "setting" : {
         "setting" : {
             "urlCheck" : false
             "urlCheck" : false
         },
         },

+ 6 - 0
pages.json

@@ -59,6 +59,12 @@
 			"style": {
 			"style": {
 				"navigationBarTitleText": "车辆配置"
 				"navigationBarTitleText": "车辆配置"
 			}
 			}
+		},
+		{
+			"path": "pages/index/maintenance",
+			"style": {
+				"navigationBarTitleText": "保养周期"
+			}
 		}
 		}
 	],
 	],
 	"globalStyle": {
 	"globalStyle": {

+ 16 - 7
pages/index/byItem.vue

@@ -2,22 +2,22 @@
 	<view class="content">
 	<view class="content">
 	  <view class="box">
 	  <view class="box">
 		  <view class="historyLine" >
 		  <view class="historyLine" >
-		  	<image src="http://img.db.66km.cn/carbrandlogo/B - 宝马.png" mode="" class="historylinecarImg"></image>
-		  	<view class="historylinecar">华晨宝马iX3 G08 电动 HA001N0电动领先型 ( 改款 )(2021-2021)过长换行</view>
+		  	<image :src="optdata.logo" mode="" class="historylinecarImg"></image>
+		  	<view class="historylinecar">{{optdata.value}}</view>
 		  </view>
 		  </view>
 	  </view>
 	  </view>
 	  
 	  
 	  <view class="title">机油推荐</view>
 	  <view class="title">机油推荐</view>
 	  
 	  
 	  <view class="lineBox flex">
 	  <view class="lineBox flex">
-	  	<view class="line">
+	  	<view class="line" @click="goEngineOil">
 			<view class="lineTitle">机油</view>
 			<view class="lineTitle">机油</view>
 			<view class="lineEnglish">Engine Oil</view>
 			<view class="lineEnglish">Engine Oil</view>
 			<view class="lineImgbox">
 			<view class="lineImgbox">
 				<image src="../../static/img/icon_jiyou.png" mode="" class="lineImg1"></image>
 				<image src="../../static/img/icon_jiyou.png" mode="" class="lineImg1"></image>
 			</view>
 			</view>
 		</view>
 		</view>
-		<view class="line">
+		<view class="line" @click="goGearboxOil">
 			<view class="lineTitle">变速箱油</view>
 			<view class="lineTitle">变速箱油</view>
 			<view class="lineEnglish">Gearbox Oil</view>
 			<view class="lineEnglish">Gearbox Oil</view>
 			<view class="lineImgbox">
 			<view class="lineImgbox">
@@ -36,14 +36,23 @@
 		},
 		},
 		data() {
 		data() {
 			return {
 			return {
-				
+				optdata:'',
 			}
 			}
 		},
 		},
 		onLoad(opt) {
 		onLoad(opt) {
-         
+           this.optdata=opt
 		},
 		},
 		methods: {
 		methods: {
-           
+           goEngineOil(){
+			   uni.navigateTo({
+			   	url:'/pages/index/engineOil?nLevelID='+this.optdata.nLevelID+'&logo='+this.optdata.logo+'&value='+this.optdata.value+'&id='+this.optdata.id
+			   })
+		   },
+		   goGearboxOil(){
+			   uni.navigateTo({
+			   	url:'/pages/index/gearboxOil?nLevelID='+this.optdata.nLevelID+'&logo='+this.optdata.logo+'&value='+this.optdata.value+'&id='+this.optdata.id
+			   })
+		   }
 		}
 		}
 	}
 	}
 </script>
 </script>

+ 6 - 1
pages/index/carGroup.vue

@@ -11,7 +11,7 @@
 			<view class="tsTxt">请选择车型</view>
 			<view class="tsTxt">请选择车型</view>
 		</view>
 		</view>
 		<view class="linebox">
 		<view class="linebox">
-			<view class="line" v-for="(item,index) in carGroupList">
+			<view class="line" v-for="(item,index) in carGroupList" @click="goItem(item)">
 				{{item.title}}
 				{{item.title}}
 			</view>
 			</view>
 		</view> 
 		</view> 
@@ -38,6 +38,11 @@
 		  this.getmodelList();
 		  this.getmodelList();
 		},
 		},
 		methods: {
 		methods: {
+		   goItem(e){
+			  uni.navigateTo({
+			  	url:'/pages/index/byItem?nLevelID='+e.carModelInfo.nLevelID+'&logo='+this.optdata.logo+'&manufactor='+this.optdata.manufactor+'&carSeries='+this.optdata.carSeries+'&brand='+this.optdata.brand+'&value='+e.value+'&id='+e.id
+			  }) 
+		   },
            getmodelList(){
            getmodelList(){
            	uni.showLoading({ title: '加载中'});
            	uni.showLoading({ title: '加载中'});
            	this.$http('matchingByOpen/queryCarModelGroupPackage', {
            	this.$http('matchingByOpen/queryCarModelGroupPackage', {

+ 30 - 10
pages/index/engineOil.vue

@@ -2,13 +2,13 @@
 	<view class="content">
 	<view class="content">
 		<view class="box">
 		<view class="box">
 			<view class="historyLine">
 			<view class="historyLine">
-				<image src="http://img.db.66km.cn/carbrandlogo/B - 宝马.png" mode="" class="historylinecarImg"></image>
-				<view class="historylinecar">华晨宝马iX3 G08 电动 HA001N0电动领先型 ( 改款 )(2021-2021)过长换行</view>
+				<image :src="optdata.logo" mode="" class="historylinecarImg"></image>
+				<view class="historylinecar">{{optdata.value}}</view>
 			</view>
 			</view>
 		</view>
 		</view>
 		<view class="cont">
 		<view class="cont">
 			<view class="topBox">
 			<view class="topBox">
-				<view class="topLine">
+				<view class="topLine" @click="goby">
 					<image src="../../static/img/icon_baoyang.png" mode="" class="toplineImg"></image>
 					<image src="../../static/img/icon_baoyang.png" mode="" class="toplineImg"></image>
 					<view class="topName">保养周期</view>
 					<view class="topName">保养周期</view>
 				</view>
 				</view>
@@ -24,13 +24,13 @@
 					<view class="jyzl">机油加注量:<span style="color: #FF4F00;">6.0L</span> </view>
 					<view class="jyzl">机油加注量:<span style="color: #FF4F00;">6.0L</span> </view>
 				</view>
 				</view>
 				<view class="jylineBox">
 				<view class="jylineBox">
-					<view class="jyline" v-for="(item,index) in 6">
+					<view class="jyline" v-for="(item,index) in MaintainPartList">
 						<view class="jyimgBox">
 						<view class="jyimgBox">
-							<image src="http://dmsphoto.66km.com.cn/thFiles/1057BA84-E59D-47B7-9F66-73E3491A443E.jpg" mode="" class="jyimg"></image>
+							<image :src="item.imgs" mode="" class="jyimg"></image>
 						</view>
 						</view>
 						<view class="jyName">
 						<view class="jyName">
-							<span class="best">最佳</span>
-							<span class="jyNametxt">安耐驰 全合成机油润滑油 5W-40 SM级 4L 汽车全合成机油润滑油 </span>
+							<!-- <span class="best">最佳</span> -->
+							<span class="jyNametxt">{{item.name}} </span>
 						</view>
 						</view>
 					</view>
 					</view>
 				</view>
 				</view>
@@ -51,14 +51,34 @@
 		},
 		},
 		data() {
 		data() {
 			return {
 			return {
-
+               optdata:'',
+			   MaintainPartList:[],
 			}
 			}
 		},
 		},
 		onLoad(opt) {
 		onLoad(opt) {
-
+			  console.log(opt)
+              this.optdata=opt;
+			  this.queryMaintainPartList()
+			 
 		},
 		},
 		methods: {
 		methods: {
-
+             queryMaintainPartList(){
+				 uni.showLoading({ title: '加载中'});
+				 this.$http('partsByOpen/queryMaintainPartList', {
+				   groupId:this.optdata.id,
+				   componentCode:'015001',
+				   
+				  },'POST').then(res => {
+				 	uni.hideLoading();
+				 	this.MaintainPartList=res.data
+				 })
+			 },
+			
+			 goby(){
+				 uni.navigateTo({
+				 	url:'/pages/index/maintenance?nLevelID='+this.optdata.nLevelID
+				 })
+			 }
 		}
 		}
 	}
 	}
 </script>
 </script>

+ 20 - 0
pages/index/index.vue

@@ -65,11 +65,31 @@
 		},
 		},
 		onLoad() {
 		onLoad() {
            var that=this;
            var that=this;
+		   this.uniLogin()
            setTimeout(function(){
            setTimeout(function(){
            			  that.$refs.carModelView.getdata();
            			  that.$refs.carModelView.getdata();
            },500)
            },500)
 		},
 		},
 		methods: {
 		methods: {
+			 uniLogin(){
+				 var that=this;
+				 uni.login({
+				   provider: 'weixin',
+				   success: function (loginRes) {
+				     console.log(loginRes);
+				 		that.getWxOpenID(loginRes)
+				   }
+				 });
+			 },
+			 getWxOpenID(e){
+			 	var that=this;
+				this.$http2('sys/getWxOpenID', {
+				  code:e.code,
+				 
+				 },'GET').then(res => {
+					 
+				 })
+			 },
              gohistory(){
              gohistory(){
 				 uni.navigateTo({
 				 uni.navigateTo({
 				 	url:'/pages/index/history'
 				 	url:'/pages/index/history'