|
@@ -942,25 +942,15 @@ export default {
|
|
|
this.tableOptions[item.columnName]
|
|
|
);
|
|
|
}
|
|
|
- // this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
- // item.listqueryTemplateID
|
|
|
- // );
|
|
|
} else {
|
|
|
if (
|
|
|
- item.columnName !== "beginPosition" &&
|
|
|
- item.columnName !== "endPosition"
|
|
|
+ item.columnName === "beginPosition" ||
|
|
|
+ item.columnName === "endPosition"
|
|
|
) {
|
|
|
- // this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
- // item.listqueryTemplateID
|
|
|
- // );
|
|
|
- } else {
|
|
|
this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
item.listqueryTemplateID,
|
|
|
null
|
|
|
);
|
|
|
- this.tabledatacopy[item.columnName] = _.cloneDeep(
|
|
|
- this.tableOptions[item.columnName]
|
|
|
- );
|
|
|
}
|
|
|
}
|
|
|
//
|