engineOil.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'机油'"></homenav>
  4. <view class="box">
  5. <view class="historyLine">
  6. <view class="historyLogoBox">
  7. <image :src="optdata.logo" mode="" class="historylinecarImg"></image>
  8. </view>
  9. <view>
  10. <view class="historylinecar">{{optdata.value}}</view>
  11. <view class="historyLineVin" v-if="optdata.isVin==1">
  12. <view class="vinms">VIN</view>
  13. <view class="vinNum">{{optdata.vin}}</view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="cont">
  19. <view class="topBox">
  20. <view class="topLine" @click="goby">
  21. <image src="../../static/img/icon_baoyang.png" mode="" class="toplineImg"></image>
  22. <view class="topName">保养周期</view>
  23. </view>
  24. <view class="topsx"></view>
  25. <view class="topLine" @click="gopz">
  26. <image src="../../static/img/icon_cheliang.png" mode="" class="toplineImg"></image>
  27. <view class="topName">车辆配置</view>
  28. </view>
  29. </view>
  30. <view class="jiyouBox" v-if="loading">
  31. <view class="jiyouTop">
  32. <view class="jiyoutopTitle">机油推荐</view>
  33. <view class="jyzl">机油加注量:<span style="color: #FF4F00;">{{oilusage}}</span> </view>
  34. </view>
  35. <view class="jylineBox">
  36. <view class="jyline" v-for="(item,index) in MaintainPartList" @click="godetail(item)">
  37. <view class="jyimgBox">
  38. <image v-if="item.imgs.split(',')[0]" :src="item.imgs.split(',')[0]" mode="aspectFit" class="jyimg"></image>
  39. <image v-else src="../../static/img/noimg.png" mode="aspectFit" class="jyimg"></image>
  40. </view>
  41. <view class="jyName">
  42. <!-- <span class="best">最佳</span> -->
  43. <span class="jyNametxt">{{item.name}} | {{item.specificationModel}} | {{item.partsCode}} </span>
  44. </view>
  45. <view class="ruleList">
  46. <view class="ruleListSpan" v-for="(v,i) in item.ruleList"><span style="">{{v.version}}:</span> {{v.versionvalue}}</view>
  47. </view>
  48. </view>
  49. </view>
  50. <nodata v-if="MaintainPartList.length==0"></nodata>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. import nodata from '../../components/nodata/nodata.vue'
  57. import homenav from "../../components/homenav/nav.vue"
  58. export default {
  59. components: {
  60. nodata,homenav
  61. },
  62. data() {
  63. return {
  64. optdata:'',
  65. MaintainPartList:[],
  66. oilusage:'',
  67. iStatusBarHeight:'',
  68. loading:false,
  69. }
  70. },
  71. onLoad(opt) {
  72. console.log(opt)
  73. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  74. this.optdata=opt;
  75. this.queryMaintainPartList()
  76. this.queryOilInfoByGroupID()
  77. },
  78. methods: {
  79. queryMaintainPartList(){
  80. this.loading=false;
  81. uni.showLoading({ title: '加载中'});
  82. this.$http('partsByOpen/queryMaintainPartList', {
  83. groupId:this.optdata.id,
  84. componentCode:'015001',
  85. },'POST').then(res => {
  86. this.loading=true;
  87. uni.hideLoading();
  88. this.MaintainPartList=res.data
  89. })
  90. },
  91. queryOilInfoByGroupID(){
  92. var that=this;
  93. this.$http('matchingByOpen/queryOilInfoByGroupID', {
  94. // mileage:'30000',
  95. groupId:this.optdata.id,
  96. },'POST').then(res => {
  97. var arr = res.data
  98. arr.forEach(item=>{
  99. if(item[0]=='机油'){
  100. that.oilusage=item[2]
  101. }
  102. })
  103. console.log(that.oilusage)
  104. })
  105. },
  106. goby(){
  107. uni.navigateTo({
  108. url:'/pages/index/maintenance?nLevelID='+this.optdata.nLevelID+'&id='+this.optdata.id
  109. })
  110. },
  111. godetail(e){
  112. uni.navigateTo({
  113. url:'/pages/index/goodsDetail?id='+e.id
  114. })
  115. },
  116. gopz(){
  117. uni.navigateTo({
  118. url:'/pages/index/carConfiguration?nLevelID='+this.optdata.nLevelID
  119. })
  120. }
  121. }
  122. }
  123. </script>
  124. <style scoped>
  125. .content {
  126. min-height: 100vh;
  127. background: #F4F5F7;
  128. }
  129. .jyimgBox{
  130. border: 1px solid #EEEEEE; width: 302rpx;border-radius: 10rpx;
  131. }
  132. .box {
  133. padding: 0 24rpx;
  134. background: #ffffff;
  135. }
  136. .historylinecarImg{
  137. width: 54rpx;
  138. height: 54rpx;
  139. }
  140. .historyLogoBox{
  141. display: flex;align-items: center;
  142. padding-right: 14rpx;
  143. }
  144. .historylinecar {
  145. font-weight: 500;
  146. font-size: 26rpx;
  147. color: #1A1A1A;
  148. line-height: 46rpx;
  149. width: 636rpx;
  150. }
  151. .historyLine {
  152. display: flex;
  153. padding: 30rpx 0;
  154. /* border-top: 1rpx solid #EEEEEE; */
  155. }
  156. .cont {
  157. padding: 30rpx 24rpx;
  158. }
  159. .toplineImg{
  160. width: 35rpx;
  161. height: 34rpx;
  162. }
  163. .topName{
  164. line-height: 34rpx;font-weight: 400;
  165. color: #FFFFFF;font-size: 28rpx;padding-left: 16rpx;
  166. }
  167. .topBox{
  168. width: 702rpx;
  169. height: 98rpx;
  170. background: #FFFFFF linear-gradient(132deg, #FF8635 0%, #FF4828 100%);
  171. border-radius: 16rpx;
  172. display: flex;justify-content: center;
  173. }
  174. .topsx{
  175. width: 2rpx;background: #ffffff;
  176. margin-left: 85rpx;margin-right: 85rpx;
  177. height: 54rpx;margin-top: 22rpx;
  178. }
  179. .topLine{
  180. display: flex;padding-top: 34rpx;
  181. }
  182. .jiyouTop{
  183. display: flex;justify-content: space-between;
  184. }
  185. .jiyouBox{
  186. margin-top: 30rpx;border-radius: 16rpx;
  187. background: #ffffff;padding: 30rpx;
  188. }
  189. .jiyoutopTitle{
  190. font-weight: 500;font-size: 28rpx;
  191. color: #1A1A1A;
  192. line-height: 40rpx;
  193. }
  194. .jyzl{
  195. font-weight: 400;line-height: 40rpx;
  196. color: #666666;font-size: 24rpx;
  197. }
  198. .jyimg{
  199. width: 302rpx;
  200. height: 302rpx;
  201. border-radius: 10rpx;
  202. }
  203. .jyline{
  204. width: 302rpx;padding-top: 30rpx;
  205. }
  206. .jyName{
  207. font-weight: 400;font-size: 22rpx;
  208. color: #1A1A1A;
  209. line-height:36rpx ;
  210. overflow: hidden;
  211. text-overflow: ellipsis;
  212. display: -webkit-box;
  213. -webkit-box-orient: vertical;
  214. -webkit-line-clamp: 2;
  215. padding-top: 10rpx;
  216. }
  217. .best{
  218. color: #FF4F00;border-radius: 6rpx;
  219. padding: 0 8rpx;border: 1px solid #FF4F00;
  220. }
  221. .jylineBox{
  222. display: flex;justify-content: space-between;flex-wrap: wrap;
  223. }
  224. .historyLineVin{
  225. display: flex;background: #ffffff;
  226. }
  227. .historyLineCar{
  228. display: flex;justify-content: space-between;
  229. }
  230. .vinNum{
  231. font-weight: 400;font-size: 22rpx;padding-left: 10rpx;
  232. color: #999999;line-height: 30rpx;
  233. }
  234. .vinms{
  235. width: 38rpx;
  236. height: 26rpx;
  237. background: linear-gradient(224deg, #FFDA28 0%, #FFBF35 100%);
  238. border-radius: 4rpx;
  239. text-align: center;
  240. line-height: 26rpx;
  241. font-weight: 600;
  242. color: #FFFFFF;
  243. font-size: 18rpx;
  244. margin-top: 2rpx;
  245. }
  246. .ruleListSpan{
  247. font-weight: 400;
  248. font-size: 22rpx;
  249. color: #999999;
  250. line-height: 36rpx;
  251. padding-right: 6rpx;
  252. }
  253. </style>