d2-crud-plus
d2-crud-plus copied to clipboard
功能升级 | 自定义弹窗的temlate里面的字段,希望能加上rules
this.getD2Crud().showDialog({ mode: "bind-picker-save", rowIndex: null, //编辑或查看时,哪一行的数据 template: { picker_id: { title: "选择拣货员", rules: [{ required: true, message: "field is required" }], key: "picker_id", component: { name: "dict-select", value: null, props: { dict: { url: "/picker/allList", value: "id", label: "name" } } } } } });
现在rules没有效果
不错,碰到同样问题