|
@@ -632,9 +632,11 @@ export default {
|
|
|
this.tableArrs.push(item.columnName);
|
|
|
// const reqUt = this.getSelectData(item.listqueryTemplateID)
|
|
|
// reqUts.push(reqUt)
|
|
|
- this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
- item.listqueryTemplateID
|
|
|
- );
|
|
|
+ if(!this.tableOptions[item.columnName]){
|
|
|
+ this.tableOptions[item.columnName] = await this.getSelectData(
|
|
|
+ item.listqueryTemplateID
|
|
|
+ );
|
|
|
+ }
|
|
|
// console.log(this.tableOptions[item.columnName])
|
|
|
}
|
|
|
// this.filterValues[item.columnName] = ''
|