fix: 上传200MB限制、备案信息、超级管理员仅首注、文件管理菜单

Made-with: Cursor
This commit is contained in:
whm
2026-03-18 16:50:20 +08:00
parent 31b1f2bb4c
commit d5bc102bd7
8 changed files with 92 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
<!--
文件管理可自定义功能子模块默认包含图片管理图标管理图标归在图片管理下
文件支持可下载 / 不可下载
超级管理员仅一个默认取第一个注册用户
-->
<template>
<div class="file-images">
<el-card>
<template #header>
<span>图片管理</span>
<el-tag size="small" style="margin-left:8px">含图标</el-tag>
</template>
<p class="tip">图片与图标统一在此管理支持可下载/不可下载功能开发中</p>
</el-card>
</div>
</template>
<script setup>
</script>
<style scoped>
.file-images .tip { color: #666; font-size: 14px; }
</style>