143 lines
4.0 KiB
Vue
143 lines
4.0 KiB
Vue
|
|
<template>
|
|||
|
|
<div class="AppIntroduce">
|
|||
|
|
<div class="home-content">
|
|||
|
|
<div class="tab">
|
|||
|
|
<div :class="tabIndex == index ? 'item active': 'item'" v-for="(item, index) in tabList" :key="index" @click="tabIndex=index">{{ item }}</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="tab-content" v-if="tabIndex == 0">
|
|||
|
|
<div class="title">2024巫溪老鹰茶文旅消费节<br/>研讨会暨产销对接会</div>
|
|||
|
|
<img src="./img/seat-img.png" alt="" class="detail-img">
|
|||
|
|
<p>
|
|||
|
|
中国老鹰茶之乡·2024巫溪老鹰茶文旅消费节将于4月23日开幕。期间,将举办文创大赛、斗茶大赛、科普研学等系列。
|
|||
|
|
</p>
|
|||
|
|
<p>
|
|||
|
|
消费节前期,巫溪组织专家对巫溪老鹰茶的历史渊源、独特功效、制作工艺、泡饮技巧、文化价值等5个方面进行深入研究,并开展“茶博士
|
|||
|
|
说老鹰茶”科普活动;推动老鹰茶产业规范化发展,制定了育苗、产品加工、产品等系列“巫溪老鹰茶相关行业标准”;开展市场推广,启动了
|
|||
|
|
老鹰茶特色示范产区命名和“茶王”“茶后”评比工作,擦亮“天地灵气 巫咸古茶”品牌;举办“渝你同饮”巫溪老鹰茶山城快闪活动,开发“巫溪
|
|||
|
|
老鹰茶老冰棍”等系列产品,全方位展示巫溪老鹰茶产业发展成果。消费节期间,将通过全网直播等形式,全过程展示市级非遗技艺——巫溪老
|
|||
|
|
鹰茶制作工艺,并推出老鹰茶长桌宴,举办巫溪老鹰产销对接会、主题研学和盐茶古道徒步等活动。
|
|||
|
|
</p>
|
|||
|
|
</div>
|
|||
|
|
<div class="tab-content" v-if="tabIndex == 1">
|
|||
|
|
<div class="title">座位表</div>
|
|||
|
|
<img src="./img/seat-img.png" alt="" class="seat-img">
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
|
|||
|
|
export default {
|
|||
|
|
name: 'AppIntroduce',
|
|||
|
|
label: '会议介绍',
|
|||
|
|
|
|||
|
|
props: {
|
|||
|
|
instance: Function,
|
|||
|
|
dict: Object,
|
|||
|
|
menuName: {default: "会议介绍"}
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
tabList: ['了解会议', '座位表'],
|
|||
|
|
tabIndex: 0
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
mounted() {
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
methods: {
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style lang="scss">
|
|||
|
|
.AppIntroduce {
|
|||
|
|
height: 100%;
|
|||
|
|
width: 100%;
|
|||
|
|
background-image: url("./img/detail-bg.png");
|
|||
|
|
background-size: 100% 100%;
|
|||
|
|
padding-top: 16px;
|
|||
|
|
.top-title {
|
|||
|
|
font-family: PingFangSC-SNaNpxibold;
|
|||
|
|
font-weight: 600;
|
|||
|
|
font-size: 17px;
|
|||
|
|
line-height: 24px;
|
|||
|
|
color: #FFF;
|
|||
|
|
letter-spacing: 0;
|
|||
|
|
text-align: center;
|
|||
|
|
padding-top: 10px;
|
|||
|
|
text-align: center;
|
|||
|
|
margin-bottom: 26px;
|
|||
|
|
}
|
|||
|
|
.home-content {
|
|||
|
|
min-height: calc(100% - 158px);
|
|||
|
|
width: calc(100% - 32px);
|
|||
|
|
margin: 0 16px;
|
|||
|
|
background: #FFF;
|
|||
|
|
border-radius: 12px;
|
|||
|
|
padding-bottom: 32px;
|
|||
|
|
.tab-content {
|
|||
|
|
padding: 0 16px;
|
|||
|
|
.title {
|
|||
|
|
line-height: 30px;
|
|||
|
|
font-family: PingFangSC-SNaNpxibold;
|
|||
|
|
font-weight: 600;
|
|||
|
|
font-size: 22px;
|
|||
|
|
color: #222;
|
|||
|
|
text-align: center;
|
|||
|
|
padding: 20px 0 18px 0;
|
|||
|
|
}
|
|||
|
|
p {
|
|||
|
|
width: 100%;
|
|||
|
|
font-family: PingFangSC-Regular;
|
|||
|
|
font-weight: 400;
|
|||
|
|
font-size: 15px;
|
|||
|
|
color: #222;
|
|||
|
|
text-align: justify;
|
|||
|
|
line-height: 26px;
|
|||
|
|
word-break: break-all;
|
|||
|
|
text-indent: 2em;
|
|||
|
|
margin-bottom: 16px;
|
|||
|
|
}
|
|||
|
|
.detail-img {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 254px;
|
|||
|
|
margin-bottom: 16px;
|
|||
|
|
}
|
|||
|
|
.seat-img {
|
|||
|
|
width: 100%;
|
|||
|
|
height: 220px;
|
|||
|
|
margin-top: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
.tab {
|
|||
|
|
position: fixed;
|
|||
|
|
top: 500px;
|
|||
|
|
left: 0;
|
|||
|
|
padding: 8px;
|
|||
|
|
background: rgba($color: #fff, $alpha: 0.4);
|
|||
|
|
border-radius: 4px;
|
|||
|
|
.item {
|
|||
|
|
width: 88px;
|
|||
|
|
line-height: 34px;
|
|||
|
|
color: #666;
|
|||
|
|
font-family: PingFangSC-Regular;
|
|||
|
|
font-weight: 400;
|
|||
|
|
font-size: 14px;
|
|||
|
|
text-align: center;
|
|||
|
|
}
|
|||
|
|
.active {
|
|||
|
|
background: #FFF;
|
|||
|
|
border-radius: 4px;
|
|||
|
|
color: #F5510A;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</style>
|