4 Commits

Author SHA1 Message Date
d9117c7675 feat: 增加扩展服务规则 2025-10-29 17:22:51 +08:00
05e9cbbc1d feat: 增加扩展服务规则 2025-10-29 17:21:15 +08:00
6a93cdbd94 feat: 内容管理 2025-10-29 17:14:05 +08:00
12ec56f1ad feat: 内容管理 2025-10-29 17:13:25 +08:00
2 changed files with 6 additions and 5 deletions

View File

@@ -1,12 +1,13 @@
import { Typography } from 'antd'; import { Typography } from 'antd';
import React from 'react'; import React from 'react';
import DraggableTagList from '@/components/Draggable/DraggableTagList'; import DraggableTagList from '@/components/Draggable/DraggableTagList';
import type { SkuConfig } from '@/services/prod/prod-manager';
const { Title, Text } = Typography; const { Title, Text } = Typography;
const SkuConfig: React.FC<{ const Sku: React.FC<{
value?: API.ProdPropSaveReqVO; value?: SkuConfig;
onChange?: (value: API.ProdPropSaveReqVO) => void; onChange?: (value: SkuConfig) => void;
}> = () => { }> = (_props) => {
// const { value, onChange } = props; // const { value, onChange } = props;
return ( return (
<> <>
@@ -20,4 +21,4 @@ const SkuConfig: React.FC<{
); );
}; };
export default React.memo(SkuConfig); export default React.memo(Sku);