Skip to content

Commit

Permalink
fix: 修改ma-crud columns types的类型命名错误
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoqingping committed Jun 1, 2024
1 parent d95d7fe commit 874c795
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 874c795

Please sign in to comment.