|
@@ -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{
|