商品表优化

This commit is contained in:
liu
2026-08-05 14:10:20 +08:00
parent 38338a8833
commit dfa471bf22
9 changed files with 54 additions and 14 deletions
@@ -22,6 +22,7 @@ import type { CheckboxGroupProps } from 'antd/es/checkbox';
import {type Key, type ReactNode} from 'react';
import type { IconSelectProps } from '@/components/XinFormField/IconSelector/typings';
import type { ImageUploaderProps } from '@/components/XinFormField/ImageUploader/typings';
import type { RichTextEditorProps } from '@/components/XinFormField/RichTextEditor/typings';
import type { UserSelectorProps } from '@/components/XinFormField/UserSelector/typings';
/**
@@ -52,6 +53,7 @@ export type FieldValue =
| 'quarter' // 季度选择
| 'year' // 年选择
| 'image' // 图片上传
| 'richText' // 富文本编辑器
| 'color' // 颜色选择
| 'icon' // 图标选择
| 'user' // 用户选择
@@ -84,6 +86,7 @@ export interface FieldPropsMap {
quarter: DatePickerProps;
year: DatePickerProps;
image: ImageUploaderProps;
richText: RichTextEditorProps;
color: ColorPickerProps;
icon: IconSelectProps;
user: UserSelectorProps;