江西小程序管理端
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.

65 lines
1.2 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="我的车辆"></topNavbar>
  4. <view class="pad">
  5. <view class="searcBox">
  6. <searchRow placeholder="搜索车牌号"></searchRow>
  7. </view>
  8. <view class="card" style="margin-bottom: 24rpx;">
  9. <view class="add">
  10. <view class="lab">新增车辆</view>
  11. <view class="btnBg">立即新增</view>
  12. </view>
  13. </view>
  14. <view class="ul">
  15. <view class="card">
  16. <view class="li">
  17. <view class="plate">浙A.6666</view>
  18. <view class="name">大众朗逸</view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. </script>
  27. <style lang="scss" scoped>
  28. .searcBox {
  29. padding: 24rpx 0;
  30. }
  31. .card {
  32. margin-bottom: 20rpx;
  33. .add {
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. height: 108rpx;
  38. padding: 0 40rpx;
  39. .lab {
  40. font-size: 32rpx;
  41. color: #333;
  42. font-weight: 500;
  43. }
  44. .btnBg {
  45. width: 192rpx;
  46. }
  47. }
  48. .li {
  49. height: 100rpx;
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. padding: 0 24rpx;
  54. .plate {
  55. color: $themC;
  56. font-weight: 500;
  57. }
  58. .name {
  59. color: #686B73;
  60. }
  61. }
  62. }
  63. </style>