VehicleManagement.vue 670 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="outer-person-container">
  3. <div class="container-title">
  4. <span class="line"></span>
  5. <span class="title">车辆进入管理</span>
  6. </div>
  7. </div>
  8. </template>
  9. <script setup lang="ts"></script>
  10. <style scoped lang="scss">
  11. .container-title {
  12. height: 24px;
  13. display: flex;
  14. align-items: center;
  15. font-weight: 500;
  16. font-size: 16px;
  17. color: #000000;
  18. .line {
  19. width: 3px;
  20. height: 16px;
  21. background: #1777ff;
  22. margin-right: 10px;
  23. }
  24. .title {
  25. margin-right: 12px;
  26. }
  27. }
  28. .outer-person-container {
  29. width: 100%;
  30. height: 100%;
  31. padding-top: 14px;
  32. }
  33. </style>