Compare commits

..

No commits in common. "14c4e011756082b48e25ff64fcaefe5673496259" and "3f354eae5833b2aa676996e86db4f90da67ac10c" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View File

@ -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 {

View File

@ -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]"

View File

@ -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" }
] ]
} }
} }