修复 comboModel的大小写异常

This commit is contained in:
小肥羊 2025-08-13 17:28:15 +08:00
parent 3f354eae58
commit dc8eec1b87
2 changed files with 4 additions and 4 deletions

View File

@ -85,8 +85,8 @@ export interface FieldSetting {
///* 表格列配置 */
//export interface TableEditColumn {}
export interface ComboModel {
Value: any;
Text: string;
value: any;
text: string;
}
/* 表格列配置 */
export interface TableColumn {

View File

@ -95,8 +95,8 @@ const tableData: TableConfig = {
edit: true, //
setting: {
datasource: [
{ Value: "true", Text: "√" },
{ Value: "false", Text: "X" }
{ value: "true", text: "√" },
{ value: "false", text: "X" }
]
}
}