| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <div class="outer-person-container">
- <div class="container-title">
- <span class="line"></span>
- <span class="title">车辆进入管理</span>
- </div>
- </div>
- </template>
- <script setup lang="ts"></script>
- <style scoped lang="scss">
- .container-title {
- height: 24px;
- display: flex;
- align-items: center;
- font-weight: 500;
- font-size: 16px;
- color: #000000;
- .line {
- width: 3px;
- height: 16px;
- background: #1777ff;
- margin-right: 10px;
- }
- .title {
- margin-right: 12px;
- }
- }
- .outer-person-container {
- width: 100%;
- height: 100%;
- padding-top: 14px;
- }
- </style>
|