123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <view class="content">
- <view class="top" v-if="loading">
- <view class="carBrand">{{info.brand}}</view>
- <view class="carName">{{info.manufactor}}-{{info.carSeries}}-{{info.salesName}}</view>
- </view>
- <view class="box" v-if="loading">
- <view class="line">
- <view class="lineLeft">品牌</view>
- <view class="lineRight">{{info.brand}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">车型</view>
- <view class="lineRight">{{info.carModel}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">销售名称</view>
- <view class="lineRight">{{info.salesName}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">款型年份</view>
- <view class="lineRight">{{info.listedYear}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">生产年份</view>
- <view class="lineRight">{{info.productionYear}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">停产年份</view>
- <view class="lineRight">{{info.discontinuationYear}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">排量</view>
- <view class="lineRight">{{info.brakeoilqty}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">进气形式</view>
- <view class="lineRight">{{info.intakeForm}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">燃油类型</view>
- <view class="lineRight">{{info.fuelLabeling}}</view>
- </view>
- <view class="line">
- <view class="lineLeft">发动机型号</view>
- <view class="lineRight">{{info.engineDescription}}</view>
- </view>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- components: {
-
- },
- data() {
- return {
- nLevelIDs:'',
- info:'',
- loading:false,
- }
- },
- onLoad(opt) {
- this.nLevelIDs=opt.nLevelID;
- this.queryCarModelBynLevelID()
- },
- methods: {
- queryCarModelBynLevelID(){
- uni.showLoading({ title: '加载中'});
- this.loading=false;
- this.$http('matchingByOpen/queryCarModelBynLevelID', {
- nLevelIDs:this.nLevelIDs,
-
-
- },'POST').then(res => {
- uni.hideLoading();
- this.info=res.data;
- this.loading=true;
- })
- }
- }
- }
- </script>
- <style scoped>
- .top{
- background: url('http://dmsphoto.66km.com.cn/thFiles/AFCBDA6F-03C0-46C0-9090-9A34C125D140.png') no-repeat;
- background-size: 100%;
- width: 750rpx;height: 250rpx;
- background-position: right bottom;
- }
- .carBrand{
- font-weight: 500;font-size: 44rpx;
- color: #FFFFFF;padding-left: 24rpx;
- line-height: 62rpx;padding-top: 30rpx;
- }
- .carName{
- font-weight: 400;font-size: 28rpx;
- color: #FFFFFF;padding-left: 24rpx;
- line-height: 40rpx;padding-top: 26rpx;
- padding-right: 24rpx;
- }
- .box{
- width: 750rpx;
- background: #FFFFFF;
- padding-top: 20rpx;
- border-radius: 24rpx 24rpx 0rpx 0rpx;
- margin-top: -40rpx;
- }
- .line{
- display: flex;font-size: 28rpx;line-height: 40rpx;padding: 20rpx 24rpx;
- }
- .lineLeft{
- color: #999999;width: 180rpx;
- }
- .lineRight{
- color: #3C3C3C;
- }
- </style>
|