This commit is contained in:
liuye
2024-04-19 10:04:48 +08:00
parent 3ac5c603eb
commit 0c5861e7cd
8 changed files with 104 additions and 69 deletions

View File

@@ -20,7 +20,7 @@
</div>
<div class="tab-content" v-if="tabIndex == 1">
<div class="title">座位表</div>
<img src="./img/seat-img.png" alt="" class="seat-img">
<img src="./img/seat-img.jpg" alt="" class="seat-img" @click="previewImage">
</div>
</div>
</div>
@@ -35,15 +35,20 @@ export default {
data() {
return {
tabList: ['了解会议', '座位表'],
tabIndex: 0
tabIndex: 0,
}
},
mounted() {
document.title = '会议介绍'
},
methods: {
previewImage() {
uni.previewImage({
urls: ['https://cdn.cunwuyun.cn/dvcp/h5/seat-img.jpg'],
current: 'https://cdn.cunwuyun.cn/dvcp/h5/seat-img.jpg'
})
},
}
}
</script>