完善用户提问功能模块

This commit is contained in:
linxd
2025-06-18 14:37:42 +08:00
parent 763871a465
commit 5fff687782
28 changed files with 2702 additions and 1640 deletions

View File

@ -310,13 +310,13 @@ const FriendLinkCategory: React.FC = () => {
width: 250,
render: (_: any, record: CategoryType) => (
<Space size="middle">
<Button type="primary" size="small" onClick={() => handleAddChildCategory(record)}>
<Button type="link" onClick={() => handleAddChildCategory(record)}>
</Button>
<Button type="primary" size="small" onClick={() => handleEditCategory(record)}>
<Button type="link" onClick={() => handleEditCategory(record)}>
</Button>
<Button type="primary" danger size="small" onClick={() => handleDeleteCategory(record)}>
<Button type="link" onClick={() => handleDeleteCategory(record)}>
</Button>
</Space>