engineOil.vue 5.9 KB

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