类型:开发

描述:
This commit is contained in:
2025-04-29 09:55:46 +08:00
parent 67ebc1cb97
commit 3c512c9c34
3 changed files with 77 additions and 71 deletions

View File

@@ -379,7 +379,7 @@
// color:#E21B1B; // color:#E21B1B;
} }
.type3{ .type3{
color: #02F9FA; color: #F75000;
} }
} }

View File

@@ -34,9 +34,9 @@
<div class="child-box"> <div class="child-box">
<p class="item__label">{{ item.licenseNumber }}</p> <p class="item__label">{{ item.licenseNumber }}</p>
<span v-if="item.type == 0" class="label_img"> <span v-if="item.type == 0" class="label_img">
观光
</span> </span>
<span v-if="item.type == 2" class="label_img"> <span v-if="item.type == 2" class="label_img label_img_0">
直通车 直通车
</span> </span>
<span class="label_img label_img_2" v-if="item.type == 1" > <span class="label_img label_img_2" v-if="item.type == 1" >
@@ -432,6 +432,9 @@ let tabsIndex = ref(0)
width:vw(90); width:vw(90);
text-align:center; text-align:center;
}
.label_img_0{
background: #FF9D6F;
} }
.label_img_2{ .label_img_2{
background: rgba(2, 249, 250, 0.5); background: rgba(2, 249, 250, 0.5);

View File

@@ -48,9 +48,9 @@
</div> </div>
<div class="new-item"> <div class="new-item">
<span v-if="item.type == 0" class="label_img"> <span v-if="item.type == 0" class="label_img">
观光
</span> </span>
<span v-if="item.type == 2" class="label_img"> <span v-if="item.type == 2" class="label_img label_img_0">
直通车 直通车
</span> </span>
<span class="label_img label_img_2" v-if="item.type == 1" > <span class="label_img label_img_2" v-if="item.type == 1" >
@@ -111,7 +111,7 @@ import PubSub from 'pubsub-js'
let tabsList = ref([ let tabsList = ref([
{id:0,text:'所有',scenicSpotId:''}, {id:0,text:'所有',scenicSpotId:''},
{id:1,text:'白帝城·瞿塘峡',scenicSpotId:'root000000'}, {id:1,text:'白帝城·瞿塘峡',scenicSpotId:'root000000'},
{id:2,text:'三峡之巅',scenicSpotId:'三峡之巅'}, {id:2,text:'三峡之巅',scenicSpotId:'root00000000'},
{id:3,text:'直通车',scenicSpotId:'奉节县'} {id:3,text:'直通车',scenicSpotId:'奉节县'}
]) ])
let tabsListIndex = ref(0) let tabsListIndex = ref(0)
@@ -471,6 +471,9 @@ import PubSub from 'pubsub-js'
width:vw(90); width:vw(90);
text-align:center; text-align:center;
} }
.label_img_0{
background: #FF9D6F;
}
.label_img_2{ .label_img_2{
background: rgba(2, 249, 250, 0.5); background: rgba(2, 249, 250, 0.5);
} }