|
@@ -705,7 +705,7 @@ const showTools = {
|
|
editor: "chosen",
|
|
editor: "chosen",
|
|
readOnly: onlyRead,
|
|
readOnly: onlyRead,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "D2") {
|
|
} else if (item.inputMode == "D2") {
|
|
@@ -716,7 +716,7 @@ const showTools = {
|
|
readOnly: onlyRead,
|
|
readOnly: onlyRead,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
multiple: true, //多选
|
|
multiple: true, //多选
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") {
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") {
|
|
@@ -874,7 +874,7 @@ const showTools = {
|
|
editor: "chosen",
|
|
editor: "chosen",
|
|
readOnly: onlyRead,
|
|
readOnly: onlyRead,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "D2") {
|
|
} else if (item.inputMode == "D2") {
|
|
@@ -885,7 +885,7 @@ const showTools = {
|
|
readOnly: onlyRead,
|
|
readOnly: onlyRead,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
multiple: true, //多选
|
|
multiple: true, //多选
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") {
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") {
|
|
@@ -1081,7 +1081,7 @@ const showTools = {
|
|
editor: "chosen",
|
|
editor: "chosen",
|
|
readOnly: onlyRead,
|
|
readOnly: onlyRead,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "D2" || item.inputMode == "E2") { //多选输入
|
|
} else if (item.inputMode == "D2" || item.inputMode == "E2") { //多选输入
|
|
@@ -1092,7 +1092,7 @@ const showTools = {
|
|
readOnly: onlyRead,
|
|
readOnly: onlyRead,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
multiple: true, //多选
|
|
multiple: true, //多选
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") { //数字输入
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") { //数字输入
|
|
@@ -1205,7 +1205,7 @@ const showTools = {
|
|
editor: "chosen",
|
|
editor: "chosen",
|
|
readOnly: !item.editable,
|
|
readOnly: !item.editable,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "D2" || item.inputMode == "E2") { //多选输入
|
|
} else if (item.inputMode == "D2" || item.inputMode == "E2") { //多选输入
|
|
@@ -1216,7 +1216,7 @@ const showTools = {
|
|
readOnly: !item.editable,
|
|
readOnly: !item.editable,
|
|
chosenOptions: {
|
|
chosenOptions: {
|
|
multiple: true, //多选
|
|
multiple: true, //多选
|
|
- data: item.dataSource ? tools.formatdataSource(item.dataSource) : ""
|
|
|
|
|
|
+ data: item.dataSource ? tools.formatDataSource(item.dataSource) : ""
|
|
}
|
|
}
|
|
};
|
|
};
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") { //数字输入
|
|
} else if (item.inputMode == "A1" || item.inputMode == "A2") { //数字输入
|