feat: 美化界面并统一列表分页为 10 条
CI / lint-and-build (push) Has been cancelled

- 左上角名称改为火炬VOD管理器

- 登录页使用渐变背景、LOGO、圆角卡片

- 视频列表、操作日志默认每页 10 条

- 布局增加底部版权信息 © meshel.cn · MIT 开源
This commit is contained in:
2026-06-29 18:12:03 +06:00
parent 10c5c0cb03
commit b84bac5828
4 changed files with 71 additions and 13 deletions
+12 -2
View File
@@ -9,7 +9,7 @@ import {
import { Outlet, useLocation, useNavigate } from 'react-router-dom';
import { useAuthStore } from '../store/auth';
const { Header, Sider, Content } = AntLayout;
const { Header, Sider, Content, Footer } = AntLayout;
export default function Layout() {
const location = useLocation();
@@ -54,7 +54,7 @@ export default function Layout() {
fontSize: 16,
}}
>
VOD
VOD管理器
</div>
<Menu
mode="inline"
@@ -87,6 +87,16 @@ export default function Layout() {
>
<Outlet />
</Content>
<Footer
style={{
textAlign: 'center',
background: colorBgContainer,
color: '#888',
fontSize: 13,
}}
>
© {new Date().getFullYear()} meshel.cn · VOD管理器 · MIT
</Footer>
</AntLayout>
</AntLayout>
);