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 TableEditColumn {}
|
||||||
export interface ComboModel {
|
export interface ComboModel {
|
||||||
value: any;
|
Value: any;
|
||||||
text: string;
|
Text: string;
|
||||||
}
|
}
|
||||||
/* 表格列配置 */
|
/* 表格列配置 */
|
||||||
export interface TableColumn {
|
export interface TableColumn {
|
||||||
|
|
|
||||||
|
|
@ -400,7 +400,7 @@ function fetchPagedData() {
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in o.setting.datasource"
|
v-for="item in o.setting.datasource"
|
||||||
:key="item.value"
|
:key="item.Value"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
:label="item[o.setting.maplabel]"
|
:label="item[o.setting.maplabel]"
|
||||||
:value="item[o.setting.mapValue]"
|
:value="item[o.setting.mapValue]"
|
||||||
|
|
|
||||||
|
|
@ -95,8 +95,8 @@ const tableData: TableConfig = {
|
||||||
edit: true, // 字段允许修改
|
edit: true, // 字段允许修改
|
||||||
setting: {
|
setting: {
|
||||||
datasource: [
|
datasource: [
|
||||||
{ value: "true", text: "√" },
|
{ Value: "true", Text: "√" },
|
||||||
{ value: "false", text: "X" }
|
{ Value: "false", Text: "X" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue