feat: 🚀 nav迭代(产品推荐和商场入口)

This commit is contained in:
2026-03-30 09:44:34 +08:00
parent 0881897885
commit 1047306d27
34 changed files with 1740 additions and 8 deletions

View File

@@ -0,0 +1,31 @@
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: "category_name",
placeholder: "请输入",
type: "input",
isArray: true,
label: "分类名称: "
}
];
export const RULE_FORM = {
page: 1,
size: 50
};