engineOil.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="historyLine">
  5. <image :src="optdata.logo" mode="" class="historylinecarImg"></image>
  6. <view class="historylinecar">{{optdata.value}}</view>
  7. </view>
  8. </view>
  9. <view class="cont">
  10. <view class="topBox">
  11. <view class="topLine" @click="goby">
  12. <image src="../../static/img/icon_baoyang.png" mode="" class="toplineImg"></image>
  13. <view class="topName">保养周期</view>
  14. </view>
  15. <view class="topsx"></view>
  16. <view class="topLine">
  17. <image src="../../static/img/icon_cheliang.png" mode="" class="toplineImg"></image>
  18. <view class="topName">车辆配置</view>
  19. </view>
  20. </view>
  21. <view class="jiyouBox">
  22. <view class="jiyouTop">
  23. <view class="jiyoutopTitle">机油推荐</view>
  24. <view class="jyzl">机油加注量:<span style="color: #FF4F00;">6.0L</span> </view>
  25. </view>
  26. <view class="jylineBox">
  27. <view class="jyline" v-for="(item,index) in MaintainPartList">
  28. <view class="jyimgBox">
  29. <image :src="item.imgs" mode="" class="jyimg"></image>
  30. </view>
  31. <view class="jyName">
  32. <!-- <span class="best">最佳</span> -->
  33. <span class="jyNametxt">{{item.name}} </span>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. components: {
  44. },
  45. data() {
  46. return {
  47. optdata:'',
  48. MaintainPartList:[],
  49. }
  50. },
  51. onLoad(opt) {
  52. console.log(opt)
  53. this.optdata=opt;
  54. this.queryMaintainPartList()
  55. },
  56. methods: {
  57. queryMaintainPartList(){
  58. uni.showLoading({ title: '加载中'});
  59. this.$http('partsByOpen/queryMaintainPartList', {
  60. groupId:this.optdata.id,
  61. componentCode:'015001',
  62. },'POST').then(res => {
  63. uni.hideLoading();
  64. this.MaintainPartList=res.data
  65. })
  66. },
  67. goby(){
  68. uni.navigateTo({
  69. url:'/pages/index/maintenance?nLevelID='+this.optdata.nLevelID
  70. })
  71. }
  72. }
  73. }
  74. </script>
  75. <style scoped>
  76. .content {
  77. min-height: 100vh;
  78. background: #F4F5F7;
  79. }
  80. .box {
  81. padding: 0 24rpx;
  82. background: #ffffff;
  83. }
  84. .historylinecarImg {
  85. width: 46rpx;
  86. height: 46rpx;
  87. }
  88. .historylinecar {
  89. font-weight: 400;
  90. font-size: 26rpx;
  91. color: #1A1A1A;
  92. line-height: 37rpx;
  93. width: 636rpx;
  94. }
  95. .historyLine {
  96. display: flex;
  97. justify-content: space-between;
  98. padding: 30rpx 0;
  99. border-top: 1rpx solid #EEEEEE;
  100. }
  101. .cont {
  102. padding: 30rpx 24rpx;
  103. }
  104. .toplineImg{
  105. width: 35rpx;
  106. height: 34rpx;
  107. }
  108. .topName{
  109. line-height: 34rpx;font-weight: 400;
  110. color: #FFFFFF;font-size: 28rpx;padding-left: 16rpx;
  111. }
  112. .topBox{
  113. width: 702rpx;
  114. height: 98rpx;
  115. background: #FFFFFF linear-gradient(132deg, #FF8635 0%, #FF4828 100%);
  116. border-radius: 16rpx;
  117. display: flex;justify-content: space-around;
  118. }
  119. .topsx{
  120. width: 2rpx;background: #ffffff;
  121. height: 54rpx;margin-top: 22rpx;
  122. }
  123. .topLine{
  124. display: flex;padding-top: 32rpx;
  125. }
  126. .jiyouTop{
  127. display: flex;justify-content: space-between;
  128. }
  129. .jiyouBox{
  130. margin-top: 30rpx;border-radius: 16rpx;
  131. background: #ffffff;padding: 30rpx;
  132. }
  133. .jiyoutopTitle{
  134. font-weight: 500;font-size: 28rpx;
  135. color: #1A1A1A;
  136. line-height: 40rpx;
  137. }
  138. .jyzl{
  139. font-weight: 400;line-height: 40rpx;
  140. color: #666666;font-size: 24rpx;
  141. }
  142. .jyimg{
  143. width: 302rpx;
  144. height: 302rpx;
  145. border-radius: 10rpx;
  146. }
  147. .jyline{
  148. width: 302rpx;padding-top: 30rpx;
  149. }
  150. .jyName{
  151. font-weight: 400;font-size: 22rpx;
  152. color: #1A1A1A;
  153. line-height:36rpx ;
  154. overflow: hidden;
  155. text-overflow: ellipsis;
  156. display: -webkit-box;
  157. -webkit-box-orient: vertical;
  158. -webkit-line-clamp: 2;
  159. padding-top: 10rpx;
  160. }
  161. .best{
  162. color: #FF4F00;border-radius: 6rpx;
  163. padding: 0 8rpx;border: 1px solid #FF4F00;
  164. }
  165. .jylineBox{
  166. display: flex;justify-content: space-between;flex-wrap: wrap;
  167. }
  168. .jyNametxt{
  169. }
  170. </style>