carConfiguration.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="content">
  3. <view class="top" v-if="loading">
  4. <view class="carBrand">{{info.brand}}</view>
  5. <view class="carName">{{info.manufactor}}-{{info.carSeries}}-{{info.salesName}}</view>
  6. </view>
  7. <view class="box" v-if="loading">
  8. <view class="line">
  9. <view class="lineLeft">品牌</view>
  10. <view class="lineRight">{{info.brand}}</view>
  11. </view>
  12. <view class="line">
  13. <view class="lineLeft">车型</view>
  14. <view class="lineRight">{{info.carModel}}</view>
  15. </view>
  16. <view class="line">
  17. <view class="lineLeft">销售名称</view>
  18. <view class="lineRight">{{info.salesName}}</view>
  19. </view>
  20. <view class="line">
  21. <view class="lineLeft">款型年份</view>
  22. <view class="lineRight">{{info.listedYear}}</view>
  23. </view>
  24. <view class="line">
  25. <view class="lineLeft">生产年份</view>
  26. <view class="lineRight">{{info.productionYear}}</view>
  27. </view>
  28. <view class="line">
  29. <view class="lineLeft">停产年份</view>
  30. <view class="lineRight">{{info.discontinuationYear}}</view>
  31. </view>
  32. <view class="line">
  33. <view class="lineLeft">排量</view>
  34. <view class="lineRight">{{info.brakeoilqty}}</view>
  35. </view>
  36. <view class="line">
  37. <view class="lineLeft">进气形式</view>
  38. <view class="lineRight">{{info.intakeForm}}</view>
  39. </view>
  40. <view class="line">
  41. <view class="lineLeft">燃油类型</view>
  42. <view class="lineRight">{{info.fuelLabeling}}</view>
  43. </view>
  44. <view class="line">
  45. <view class="lineLeft">发动机型号</view>
  46. <view class="lineRight">{{info.engineDescription}}</view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. components: {
  54. },
  55. data() {
  56. return {
  57. nLevelIDs:'',
  58. info:'',
  59. loading:false,
  60. }
  61. },
  62. onLoad(opt) {
  63. this.nLevelIDs=opt.nLevelID;
  64. this.queryCarModelBynLevelID()
  65. },
  66. methods: {
  67. queryCarModelBynLevelID(){
  68. uni.showLoading({ title: '加载中'});
  69. this.loading=false;
  70. this.$http('matchingByOpen/queryCarModelBynLevelID', {
  71. nLevelIDs:this.nLevelIDs,
  72. },'POST').then(res => {
  73. uni.hideLoading();
  74. this.info=res.data;
  75. this.loading=true;
  76. })
  77. }
  78. }
  79. }
  80. </script>
  81. <style scoped>
  82. .top{
  83. background: url('http://dmsphoto.66km.com.cn/thFiles/AFCBDA6F-03C0-46C0-9090-9A34C125D140.png') no-repeat;
  84. background-size: 100%;
  85. width: 750rpx;height: 250rpx;
  86. background-position: right bottom;
  87. }
  88. .carBrand{
  89. font-weight: 500;font-size: 44rpx;
  90. color: #FFFFFF;padding-left: 24rpx;
  91. line-height: 62rpx;padding-top: 30rpx;
  92. }
  93. .carName{
  94. font-weight: 400;font-size: 28rpx;
  95. color: #FFFFFF;padding-left: 24rpx;
  96. line-height: 40rpx;padding-top: 26rpx;
  97. padding-right: 24rpx;
  98. }
  99. .box{
  100. width: 750rpx;
  101. background: #FFFFFF;
  102. padding-top: 20rpx;
  103. border-radius: 24rpx 24rpx 0rpx 0rpx;
  104. margin-top: -40rpx;
  105. }
  106. .line{
  107. display: flex;font-size: 28rpx;line-height: 40rpx;padding: 20rpx 24rpx;
  108. }
  109. .lineLeft{
  110. color: #999999;width: 180rpx;
  111. }
  112. .lineRight{
  113. color: #3C3C3C;
  114. }
  115. </style>