This commit is contained in:
duanliang
2025-04-01 16:38:04 +08:00
parent ff76bf97c4
commit 1f0280d5f2
4 changed files with 56 additions and 10 deletions

Binary file not shown.

View File

@@ -1,7 +1,15 @@
<template> <template>
<div class="title-2"> <div v-if="type==1" class="title-2">
<span>{{ title }}</span> <span>{{ title }}</span>
</div> </div>
<div v-if="type==2" class="title-2">
<div class="item active">
<span >{{ title }}</span>
</div>
<div class="item">
<span>直通车购票</span>
</div>
</div>
</template> </template>
<script setup> <script setup>
@@ -9,6 +17,10 @@
title: { title: {
type: String, type: String,
default: '' default: ''
},
type: {
type: Number,
default:1
} }
}) })
</script> </script>
@@ -19,10 +31,14 @@
height: vh(28); height: vh(28);
display: flex; display: flex;
align-items: center; align-items: center;
background-image: url('@/assets/images/title-5.png'); // background-image: url('@/assets/images/title-5.png');
background-size: 100% 100%; background-size: 100% 100%;
& > span { .item{
padding-left: vw(22); // margin-right: vw(22);
padding:vw(5) vw(10);
// border-bottom:1px solid #ccc;
}
& span {
font-weight: bold; font-weight: bold;
font-size: vw(15); font-size: vw(15);
background-image: linear-gradient(to bottom, #ffffff 0%, #75c1ff 100%); background-image: linear-gradient(to bottom, #ffffff 0%, #75c1ff 100%);
@@ -31,5 +47,10 @@
-webkit-text-fill-color: transparent; /* 兼容WebKit内核浏览器 */ -webkit-text-fill-color: transparent; /* 兼容WebKit内核浏览器 */
color: transparent; /* 兼容其他浏览器 */ color: transparent; /* 兼容其他浏览器 */
} }
& .active{
background: linear-gradient(180deg, #00b7ff 0%, #0033ff 100%);
color:#fff;
border-bottom:none;
}
} }
</style> </style>

View File

@@ -269,7 +269,7 @@
} }
.video { .video {
width: vw(1814); width: vw(1814);
height: vw(950); height: vw(920);
object-fit: contain; object-fit: contain;
background-color: #062b57; background-color: #062b57;
} }

View File

@@ -69,7 +69,16 @@
</div> </div>
<div class="ticket-box"> <div class="ticket-box">
<Title2 title="景区购票" /> <Title2 :type="2" title="景区购票" />
<!-- <div class="select-box">
<Select
v-model="optVal"
label="选择景区"
:options="options"
@on-change="getScenicChart"
/>
</div> -->
<div class="ticket-wrap"> <div class="ticket-wrap">
<img src="@/assets/images/ticket.png" /> <img src="@/assets/images/ticket.png" />
<div v-for="(item, index) in homeStore.scenicData.data" :key="index"> <div v-for="(item, index) in homeStore.scenicData.data" :key="index">
@@ -127,9 +136,20 @@
import gauge from './gauge' import gauge from './gauge'
import countup from 'vue-countup-v3' import countup from 'vue-countup-v3'
import { useHomeStore } from '@/stores/home' import { useHomeStore } from '@/stores/home'
let optVal = ref('景区购票')
let options = ref([
{
id: '1',
ssname: '景区购票'
}, {
id: '2',
ssname: '直通车购票'
}
])
const homeStore = useHomeStore() const homeStore = useHomeStore()
const getScenicChart = ()=>{
}
// 今日景区承载量 // 今日景区承载量
const scenicBearList = computed(() => { const scenicBearList = computed(() => {
return [{ data: homeStore.scenicBearData.dataList.map((item) => item.value) }] return [{ data: homeStore.scenicBearData.dataList.map((item) => item.value) }]
@@ -150,6 +170,11 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.select-box {
width:vw(200);
height:vh(30);
font-size:vw(16);
}
.box-2 { .box-2 {
margin-top: vh(120); margin-top: vh(120);
width: vw(800); width: vw(800);
@@ -350,7 +375,7 @@
} }
} }
.ticket-wrap { .ticket-wrap {
margin-top: vh(8); margin-top: vh(18);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;