You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="pageBgImg"> <topNavbar title="我的车辆"></topNavbar> <view class="pad"> <view class="searcBox"> <searchRow placeholder="搜索车牌号"></searchRow> </view> <!-- <view class="card" style="margin-bottom: 24rpx;"> <view class="add"> <view class="lab">新增车辆</view> <view class="btnBg">立即新增</view> </view> </view> --> <view class="ul"> <view class="card"> <view class="li"> <view class="plate">浙A.6666</view> <view class="name">大众朗逸</view> </view> </view> </view> </view> </view> </template>
<script> </script>
<style lang="scss" scoped> .searcBox { padding: 24rpx 0; } .card { margin-bottom: 20rpx; .add { display: flex; align-items: center; justify-content: space-between; height: 108rpx; padding: 0 40rpx; .lab { font-size: 32rpx; color: #333; font-weight: 500; } .btnBg { width: 192rpx; } } .li { height: 100rpx; display: flex; align-items: center; justify-content: space-between; padding: 0 24rpx; .plate { color: $themC; font-weight: 500; } .name { color: #686B73; } } } </style>
|