byItem.vue 4.6 KB

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