Skip to content

Commit

Permalink
Merge pull request #173 from quickapicn/fix/ma-crud-columns-types
Browse files Browse the repository at this point in the history
fix: 修改ma-crud columns types的类型拼写错误
  • Loading branch information
kanyxmo authored Jun 17, 2024
2 parents e1a1d6f + 874c795 commit 8085569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ma-crud/types/columns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { VNodeChild } from "vue";
*/
import { FieldRule } from "@arco-design/web-vue";

export type FormDateType =
export type FormDataType =
| "radio"
| "checkbox"
| "select"
Expand Down Expand Up @@ -62,7 +62,7 @@ export interface BasicColumn {
// 字段名称
dataIndex: string;
// 组件类型
formType?: FormDateType;
formType?: FormDataType;
// 表格列对齐方式
align?: "center" | "right" | "left";
// 字段是否加入搜索
Expand Down

0 comments on commit 8085569

Please sign in to comment.