byItem.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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="title">机油推荐</view>
  17. <view class="lineBox flex">
  18. <view class="line" @click="goEngineOil">
  19. <view class="lineTitle">机油</view>
  20. <view class="lineEnglish">Engine Oil</view>
  21. <view class="lineImgbox">
  22. <image src="../../static/img/icon_jiyou.png" mode="" class="lineImg1"></image>
  23. </view>
  24. </view>
  25. <view class="line" @click="goGearboxOil">
  26. <view class="lineTitle">变速箱油</view>
  27. <view class="lineEnglish">Gearbox Oil</view>
  28. <view class="lineImgbox">
  29. <image src="../../static/img/icon_biansuxiang.png" mode="" class="lineImg2"></image>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import homenav from "../../components/homenav/nav.vue"
  37. export default {
  38. components: {
  39. homenav
  40. },
  41. data() {
  42. return {
  43. optdata:'',
  44. isVin:'',
  45. vin:'',
  46. scarid:'',
  47. iStatusBarHeight:'',
  48. }
  49. },
  50. onLoad(opt) {
  51. console.log(opt);
  52. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  53. this.optdata=opt;
  54. if(opt.scarid){
  55. this.scarid=opt.scarid;
  56. this.queryCarModelGroupInfo()
  57. }else{
  58. if(opt.isVin==1){
  59. this.isVin=1;
  60. this.vin=opt.vin
  61. }
  62. this.saveQueryHistory()
  63. }
  64. },
  65. methods: {
  66. queryCarModelGroupInfo(){
  67. uni.showLoading({ title: '加载中'});
  68. this.$http('matchingByOpen/queryCarModelGroupInfo', {
  69. id:this.scarid,
  70. },'POST').then(res => {
  71. uni.hideLoading();
  72. var data={
  73. value:res.data.value,
  74. id:res.data.id,
  75. nLevelID:res.data.carModelInfo.nLevelID,
  76. logo:res.data.carModelInfo.logo,
  77. }
  78. this.optdata=data;
  79. this.saveQueryHistory()
  80. })
  81. },
  82. saveQueryHistory(){
  83. this.$http2('saveQueryHistory', {
  84. nLevelID:this.optdata.nLevelID,
  85. logo:this.optdata.logo,
  86. title:this.optdata.value,
  87. groupId:this.optdata.id,
  88. isVin:this.isVin,
  89. vin:this.vin
  90. },'POST').then(res => {
  91. })
  92. },
  93. goEngineOil(){
  94. uni.navigateTo({
  95. url:'/pages/index/engineOil?nLevelID='+this.optdata.nLevelID+'&logo='+this.optdata.logo+'&value='+this.optdata.value+'&id='+this.optdata.id+'&isVin='+this.optdata.isVin+'&vin='+this.optdata.vin
  96. })
  97. },
  98. goGearboxOil(){
  99. uni.navigateTo({
  100. url:'/pages/index/gearboxOil?nLevelID='+this.optdata.nLevelID+'&logo='+this.optdata.logo+'&value='+this.optdata.value+'&id='+this.optdata.id+'&isVin='+this.optdata.isVin+'&vin='+this.optdata.vin
  101. })
  102. }
  103. }
  104. }
  105. </script>
  106. <style scoped>
  107. .content{
  108. min-height: 100vh;
  109. background: #F4F5F7;
  110. }
  111. .box{
  112. padding: 0 24rpx;
  113. background: #ffffff;
  114. }
  115. .historylinecarImg{
  116. width: 46rpx;
  117. height: 46rpx;
  118. }
  119. .historylinecar{
  120. font-weight: 500;font-size: 26rpx;
  121. color: #1A1A1A;
  122. line-height: 46rpx;width: 636rpx;
  123. }
  124. .historyLine{
  125. padding: 30rpx 0;
  126. }
  127. .title{
  128. font-weight: 500;font-size: 28rpx;
  129. color: #1A1A1A;padding: 30rpx 24rpx;
  130. line-height: 40rpx;
  131. }
  132. .lineBox{
  133. padding: 0 24rpx;
  134. }
  135. .line{
  136. width: 332rpx;
  137. height: 206rpx;
  138. background: #FFFFFF;
  139. border-radius: 16rpx;
  140. }
  141. .lineTitle{
  142. font-weight: 500;font-size: 28rpx;padding-top: 32rpx;
  143. color: #1A1A1A;padding-left: 30rpx;
  144. line-height: 40rpx;
  145. }
  146. .lineEnglish{
  147. font-weight: 400;font-size: 24rpx;
  148. color: #999999;padding-left: 30rpx;
  149. line-height: 34rpx;padding-top: 10rpx;
  150. }
  151. .lineImg1{
  152. width: 82rpx;height: 92rpx;
  153. }
  154. .lineImgbox{
  155. text-align: right;
  156. }
  157. .lineImg2{
  158. width: 106rpx;height: 82rpx; margin-top: 10rpx;
  159. }
  160. .historyLineVin{
  161. display: flex;background: #ffffff;
  162. }
  163. .historyLineCar{
  164. display: flex;justify-content: space-between;
  165. }
  166. .vinNum{
  167. font-weight: 400;font-size: 22rpx;padding-left: 10rpx;
  168. color: #999999;line-height: 30rpx;
  169. }
  170. .vinms{
  171. width: 38rpx;
  172. height: 26rpx;
  173. background: linear-gradient(224deg, #FFDA28 0%, #FFBF35 100%);
  174. border-radius: 4rpx;
  175. text-align: center;
  176. line-height: 26rpx;
  177. font-weight: 600;
  178. color: #FFFFFF;
  179. font-size: 18rpx;
  180. margin-top: 2rpx;
  181. }
  182. </style>