Files
dvcp_v2_webapp/project/wuxi/h5/AppIntroduce/AppIntroduce.vue
2024-04-18 13:49:21 +08:00

143 lines
4.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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/detail-hyjs.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>