Commit 9c977621d9e2e45ae4a935ee566047939dadf470

Authored by guzijian
1 parent 06c93b82

feat: 修改车队盒子颜色

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