chore: initialize frontend miniapp repository

This commit is contained in:
lyf
2026-06-09 21:08:45 +08:00
commit a90f63cef0
107 changed files with 60454 additions and 0 deletions

View File

@@ -0,0 +1,270 @@
<template>
<view class="detail-page">
<scroll-view class="content" scroll-y>
<!-- 展品图片 -->
<view class="exhibit-hero">
<image class="hero-image" :src="exhibit.image" mode="aspectFill" />
<view class="audio-control" @tap="handlePlayAudio">
<text class="audio-icon">{{ isPlaying ? '⏸' : '▶' }}</text>
</view>
</view>
<!-- 展品信息 -->
<view class="exhibit-info">
<text class="exhibit-title">{{ exhibit.name }}</text>
<text v-if="exhibit.artist" class="exhibit-artist">{{ exhibit.artist }}</text>
<view class="info-grid">
<view v-if="exhibit.year" class="info-item">
<text class="info-label">创作年代</text>
<text class="info-value">{{ exhibit.year }}</text>
</view>
<view v-if="exhibit.material" class="info-item">
<text class="info-label">材质</text>
<text class="info-value">{{ exhibit.material }}</text>
</view>
<view v-if="exhibit.size" class="info-item">
<text class="info-label">尺寸</text>
<text class="info-value">{{ exhibit.size }}</text>
</view>
<view v-if="exhibit.hall" class="info-item">
<text class="info-label">展厅位置</text>
<text class="info-value">{{ exhibit.hall }}</text>
</view>
</view>
<view class="description-section">
<text class="section-title">作品介绍</text>
<text class="description-text">{{ exhibit.description }}</text>
</view>
</view>
</scroll-view>
<!-- 底部操作栏 -->
<view class="action-bar">
<view class="action-btn-group">
<view class="action-btn" @tap="handleNavigate">
<text class="btn-icon">🗺</text>
<text class="btn-text">导航</text>
</view>
<view class="action-btn" @tap="handleCollect">
<text class="btn-icon">{{ isCollected ? '❤️' : '🤍' }}</text>
<text class="btn-text">收藏</text>
</view>
<view class="action-btn" @tap="handleShare">
<text class="btn-icon">📤</text>
<text class="btn-text">分享</text>
</view>
</view>
</view>
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
const exhibit = ref({
id: '1',
name: '蒙娜丽莎',
artist: '列奥纳多·达·芬奇',
year: '1503-1519',
material: '木板油画',
size: '77cm × 53cm',
hall: '1号展厅 1F',
image: '/static/exhibit-placeholder.jpg',
description: '《蒙娜丽莎》是意大利文艺复兴时期画家列奥纳多·达·芬奇创作的油画,现收藏于法国卢浮宫博物馆。该画作主要表现了女性的典雅和恬静的典型形象,塑造了资本主义上升时期一位城市有产阶级的妇女形象。'
})
const isPlaying = ref(false)
const isCollected = ref(false)
onLoad((options: any) => {
if (options.id) {
// 根据 ID 加载展品数据
console.log('加载展品:', options.id)
}
})
const handlePlayAudio = () => {
isPlaying.value = !isPlaying.value
console.log('播放/暂停音频')
}
const handleNavigate = () => {
console.log('导航到展品位置')
uni.navigateBack()
}
const handleCollect = () => {
isCollected.value = !isCollected.value
uni.showToast({
title: isCollected.value ? '已收藏' : '已取消收藏',
icon: 'none'
})
}
const handleShare = () => {
uni.showShareMenu()
}
</script>
<style scoped lang="scss">
.detail-page {
width: 100%;
height: 100vh;
background-color: var(--museum-bg-light);
display: flex;
flex-direction: column;
}
.content {
flex: 1;
overflow-y: auto;
}
.exhibit-hero {
position: relative;
width: 100%;
height: 450px;
background-color: var(--museum-bg-map);
}
.hero-image {
width: 100%;
height: 100%;
}
.audio-control {
position: absolute;
bottom: 20px;
right: 20px;
width: 64px;
height: 64px;
background-color: var(--museum-accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
cursor: pointer;
transition: all 0.3s;
}
.audio-control:active {
transform: scale(0.95);
}
.audio-icon {
font-size: 28px;
color: var(--museum-text-primary);
}
.exhibit-info {
padding: 20px 16px 32px;
background-color: var(--museum-bg-surface);
}
.exhibit-title {
font-size: 26px;
font-weight: 700;
color: var(--museum-text-primary);
margin-bottom: 6px;
display: block;
line-height: 1.3;
}
.exhibit-artist {
font-size: 15px;
color: var(--museum-text-secondary);
margin-bottom: 20px;
display: block;
}
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px 16px;
margin-bottom: 20px;
padding: 16px;
background-color: var(--museum-bg-light);
border-radius: var(--radius-card);
}
.info-item {
display: flex;
flex-direction: column;
gap: 6px;
}
.info-label {
font-size: 12px;
color: var(--museum-text-disabled);
font-weight: 500;
}
.info-value {
font-size: 14px;
color: var(--museum-text-primary);
font-weight: 400;
}
.description-section {
margin-top: 20px;
}
.section-title {
font-size: 17px;
font-weight: 600;
color: var(--museum-text-primary);
margin-bottom: 10px;
display: block;
}
.description-text {
font-size: 14px;
line-height: 1.7;
color: var(--museum-text-secondary);
}
.action-bar {
background-color: var(--museum-bg-surface);
border-top: 1px solid var(--museum-border-light);
padding: 8px 16px;
padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.action-btn-group {
display: flex;
gap: 8px;
}
.action-btn {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 10px 8px;
background-color: var(--museum-bg-light);
border-radius: var(--radius-button);
cursor: pointer;
transition: all 0.2s;
}
.action-btn:active {
background-color: var(--museum-border-light);
transform: scale(0.98);
}
.btn-icon {
font-size: 22px;
}
.btn-text {
font-size: 11px;
color: var(--museum-text-secondary);
font-weight: 500;
}
</style>