Compare commits
No commits in common. "14c4e011756082b48e25ff64fcaefe5673496259" and "3f354eae5833b2aa676996e86db4f90da67ac10c" have entirely different histories.
14c4e01175
...
3f354eae58
|
|
@ -85,8 +85,8 @@ export interface FieldSetting {
|
|||
///* 表格列配置 */
|
||||
//export interface TableEditColumn {}
|
||||
export interface ComboModel {
|
||||
value: any;
|
||||
text: string;
|
||||
Value: any;
|
||||
Text: string;
|
||||
}
|
||||
/* 表格列配置 */
|
||||
export interface TableColumn {
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ function fetchPagedData() {
|
|||
>
|
||||
<el-option
|
||||
v-for="item in o.setting.datasource"
|
||||
:key="item.value"
|
||||
:key="item.Value"
|
||||
autocomplete="off"
|
||||
:label="item[o.setting.maplabel]"
|
||||
:value="item[o.setting.mapValue]"
|
||||
|
|
|
|||
|
|
@ -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" }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue