123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <view class="content">
- <view class="top">
- <view class="topCont">
- <view class="carBox">
- <image src="../../static/img/nocar.png" mode="" class="carLogo"></image>
- <view class="carTxt">华晨宝马iX3 G08 电动 HA001N0电动领先型 ( 改款 )(2021-2021)过长换行</view>
- <image src="../../static/img/jt.png" mode="" class="carJt"></image>
- </view>
- <view class="vinBox">
- <view class="vinB">VIN</view>
- <view class="vinNum">HNUJN8888999H9098</view>
- </view>
- </view>
- </view>
- <view class="mainBox">
- <view class="maintitle">总组</view>
- <view class="mainLine" v-for="(item,index) in 5" @click="goTwo">
- <view class="lineName">电气设备,排气和加热</view>
- <image src="../../static/img/jt.png" mode="" class="mainLineJt"></image>
- </view>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
-
- },
- methods: {
- goTwo(){
- uni.navigateTo({
- url:'modelTwo'
- })
- }
- }
- }
- </script>
- <style scoped>
- .content{
- background: #F4F5F7;
- min-height: 100vh;
- }
- .top{
- padding: 20rpx 0;
- }
- .topCont{
- width: 750rpx;
- height: 185rpx;
- background: #FFFFFF;
- }
- .carLogo{
- width: 72rpx;height: 72rpx;
- }
- .carTxt{
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 36rpx;
- width: 560rpx;
- }
- .carJt{
- width: 25rpx;
- height: 24rpx;
- margin-top: 6rpx;
- }
- .carBox{
- display: flex;
- justify-content: space-between;
- padding: 30rpx 24rpx 24rpx 24rpx;
- }
- .vinBox{
- display: flex;
- padding-left: 120rpx;
- }
- .vinB{
- background: #F19D01;
- width: 60rpx;
- height: 30rpx;
- text-align: center;
- line-height: 30rpx;
- color: #FFFFFF;
- font-size: 22rpx;
- border-radius: 5rpx;
- }
- .vinNum{
- color: #999999;font-size: 24rpx;line-height: 30rpx;padding-left: 10rpx;
- }
- .mainBox{
- background: #FFFFFF;
- }
- .maintitle{
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- text-align: center;
- line-height: 88rpx;
- border-bottom: 1px solid #EEEEEE;
- }
- .mainLineJt{
- width: 25rpx;
- height: 24rpx;
- margin-top: 8rpx;
- }
- .mainLine{
- display: flex;
- justify-content: space-between;
- border-bottom: 1px solid #EEEEEE;
- padding: 29rpx 24rpx;
- }
- .lineName{
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 40rpx;
- }
- </style>
|