修改友情分类管理和友情管理bug

This commit is contained in:
linxd
2025-07-14 12:05:13 +08:00
parent 087d84a08b
commit cd1ab80a5d
6 changed files with 90 additions and 39 deletions

View File

@ -26,14 +26,15 @@ export const useFriendLinkDict = () => {
};
// 友情链接分类类型选项
// type int 是 类型(0.普通展示、1.重点展示)
const categoryTypeOptions = [
{
label: intl.formatMessage({ id: 'friendLink.category.type.normal' }),
value: 'normal',
value: '0',
},
{
label: intl.formatMessage({ id: 'friendLink.category.type.featured' }),
value: 'featured',
value: '1',
},
];