登录样式优化

This commit is contained in:
禺狨
2023-03-09 15:11:00 +08:00
parent be5b7fb24a
commit d1d4d2c3bd
23 changed files with 745 additions and 142 deletions

View File

@@ -63,7 +63,7 @@ export const ResourceCategoryPage: React.FC = () => {
text="详情"
class="c-red"
icon={null}
p="department-update"
p="department-cud"
onClick={() => navigate(`/resource-category/update/${record.id}`)}
/>
<Popconfirm
@@ -78,7 +78,7 @@ export const ResourceCategoryPage: React.FC = () => {
text="删除"
class="c-red"
icon={null}
p="department-destroy"
p="department-cud"
onClick={() => null}
/>
</Popconfirm>
@@ -156,7 +156,7 @@ export const ResourceCategoryPage: React.FC = () => {
text="新建"
class="mr-16"
icon={<PlusOutlined />}
p="department-store"
p="department-cud"
onClick={() => null}
/>
</Link>

View File

@@ -23,7 +23,6 @@ interface DataType {
id: React.Key;
name: string;
created_at: string;
duration: string;
}
export const ResourceVideosPage = () => {