64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
interface FormItem {
|
|
prop: string;
|
|
label?: string;
|
|
placeholder?: string;
|
|
type: string;
|
|
isCopy?: boolean;
|
|
optionProps?: any;
|
|
startPlaceholder?: string;
|
|
endPlaceholder?: string;
|
|
options?: any;
|
|
isArray?: boolean;
|
|
startDate?: string; //开始时间(传入后台需要的参数)
|
|
endDate?: string; //结束时间(传入后台需要的参数)
|
|
startProp?: string;
|
|
endProp?: string;
|
|
isInteger?: boolean;
|
|
}
|
|
export const FORM_DATA: FormItem[] = [
|
|
{
|
|
prop: "name",
|
|
placeholder: "请输入",
|
|
type: "input",
|
|
isArray: true,
|
|
label: "产品名称: "
|
|
},
|
|
{
|
|
prop: "spu",
|
|
placeholder: "请输入",
|
|
type: "input",
|
|
isArray: true,
|
|
label: "型号: "
|
|
},
|
|
{
|
|
prop: "category_id",
|
|
placeholder: "请选择",
|
|
type: "treeSelect",
|
|
isArray: true,
|
|
label: "产品分类: ",
|
|
options: [
|
|
{
|
|
value: "1",
|
|
label: "Level one 1",
|
|
children: [
|
|
{
|
|
value: "1-1",
|
|
label: "Level two 1-1",
|
|
children: [
|
|
{
|
|
value: "1-1-1",
|
|
label: "Level three 1-1-1"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
export const RULE_FORM = {
|
|
page: 1,
|
|
size: 50
|
|
};
|