|
@@ -2,13 +2,13 @@
|
|
|
<view class="content">
|
|
|
<view class="box">
|
|
|
<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 class="cont">
|
|
|
<view class="topBox">
|
|
|
- <view class="topLine">
|
|
|
+ <view class="topLine" @click="goby">
|
|
|
<image src="../../static/img/icon_baoyang.png" mode="" class="toplineImg"></image>
|
|
|
<view class="topName">保养周期</view>
|
|
|
</view>
|
|
@@ -24,13 +24,13 @@
|
|
|
<view class="jyzl">机油加注量:<span style="color: #FF4F00;">6.0L</span> </view>
|
|
|
</view>
|
|
|
<view class="jylineBox">
|
|
|
- <view class="jyline" v-for="(item,index) in 6">
|
|
|
+ <view class="jyline" v-for="(item,index) in MaintainPartList">
|
|
|
<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 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>
|
|
@@ -51,14 +51,34 @@
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
-
|
|
|
+ optdata:'',
|
|
|
+ MaintainPartList:[],
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
-
|
|
|
+ console.log(opt)
|
|
|
+ this.optdata=opt;
|
|
|
+ this.queryMaintainPartList()
|
|
|
+
|
|
|
},
|
|
|
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>
|