修改页面结构

This commit is contained in:
2026-02-02 20:07:37 +08:00
parent 3de5e9ebe9
commit 21f4a0fa96
209 changed files with 41824 additions and 2730 deletions

View File

@@ -0,0 +1,76 @@
<template>
<view class="placeholder-page">
<view class="placeholder-content">
<view class="placeholder-icon">📦</view>
<text class="placeholder-title">{{ title || '页面开发中' }}</text>
<text class="placeholder-desc">{{ desc || '该功能模块正在开发中,敬请期待' }}</text>
<view class="placeholder-info">
<text class="info-label">组件Key:</text>
<text class="info-value">{{ componentKey || 'Unknown' }}</text>
</view>
</view>
</view>
</template>
<script setup lang="uts">
import { ref } from 'vue'
const props = defineProps<{
title?: string
desc?: string
componentKey?: string
}>()
</script>
<style scoped lang="scss">
.placeholder-page {
display: flex;
align-items: center;
justify-content: center;
min-height: 500px;
padding: 40px 20px;
}
.placeholder-content {
text-align: center;
max-width: 400px;
}
.placeholder-icon {
font-size: 64px;
margin-bottom: 20px;
}
.placeholder-title {
display: block;
font-size: 20px;
font-weight: 600;
color: #333;
margin-bottom: 12px;
}
.placeholder-desc {
display: block;
font-size: 14px;
color: #666;
line-height: 1.6;
margin-bottom: 24px;
}
.placeholder-info {
padding: 12px 16px;
background: #f5f5f5;
border-radius: 4px;
font-size: 12px;
}
.info-label {
color: #999;
margin-right: 8px;
}
.info-value {
color: #1890ff;
font-family: monospace;
}
</style>