Commit 9c977621d9e2e45ae4a935ee566047939dadf470
1 parent
06c93b82
feat: 修改车队盒子颜色
Showing
2 changed files
with
2 additions
and
3 deletions
src/components/FleetContentBox/index.vue
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | <div v-for="(childItem, childIndex) in item.fleetInfos" :key="childItem.lineName" ref="fleetLineInfoContainer" |
| 5 | 5 | class="fleet-line-info-container"> |
| 6 | 6 | <div :id="childItem.lineName" class="fleet-line-title"> |
| 7 | - {{ childItem.lineName }} | |
| 7 | + {{ childItem.lineName != "青蒸线(区间)" ? childItem.lineName : childItem.lineName + "— 引用青蒸线" }} | |
| 8 | 8 | </div> |
| 9 | 9 | <div class="line-box" style="height: 2px; margin: 10px 0; background: #d9e0e2;"></div> |
| 10 | 10 | <div ref="fleetNbbmInfoContainer" class="fleet-nbbm-info-container"> |
| ... | ... | @@ -61,7 +61,6 @@ |
| 61 | 61 | <script setup> |
| 62 | 62 | import ConstForm from '@/components/ConstForm/index.vue'; |
| 63 | 63 | import { nextTick, onMounted, reactive, ref } from 'vue'; |
| 64 | -const popoverRef = ref({}); | |
| 65 | 64 | const props = defineProps({ |
| 66 | 65 | item: { |
| 67 | 66 | type: Object, | ... | ... |
src/views/home/index.vue
| ... | ... | @@ -555,7 +555,7 @@ const handleGlobalInfo = (data, num) => { |
| 555 | 555 | display: flex; |
| 556 | 556 | justify-content: center; |
| 557 | 557 | align-items: center; |
| 558 | - background-color: orange; | |
| 558 | + background-color: #303133; | |
| 559 | 559 | margin-right: clamp(0.4rem, 0.489rem + 1.05vw, 0.7rem); |
| 560 | 560 | } |
| 561 | 561 | ... | ... |