学员端小程序
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.

43 lines
707 B

1 year ago
  1. <template>
  2. <view class="tabCon">
  3. <view class="tab1">
  4. <view class="card">
  5. <view class="leftTxt">浙A·99999</view>
  6. <view class="rightTxt">大众朗逸</view>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. }
  14. </script>
  15. <style lang="scss" scoped>
  16. .tabCon {
  17. width: 100%;
  18. .tab1 {
  19. width: 100%;
  20. .card {
  21. margin-top: 24rpx;
  22. height: 100rpx;
  23. background: #FFFFFF;
  24. border-radius: 16rpx;
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. padding: 0 24rpx;
  29. .leftTxt {
  30. font-size: 32rpx;
  31. color: $themC;
  32. font-weight: 500;
  33. }
  34. .rightTxt {
  35. font-size: 28rpx;
  36. color: #686B73;
  37. }
  38. }
  39. }
  40. }
  41. </style>