|
@@ -691,6 +691,7 @@
|
|
|
accordion
|
|
|
show-checkbox
|
|
|
@check="checkchange"
|
|
|
+ v-loading="GLExcelLoading"
|
|
|
>
|
|
|
</el-tree>
|
|
|
</el-scrollbar>
|
|
@@ -1569,6 +1570,7 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
exceldata: [],//清表模板
|
|
|
+ GLExcelLoading:false,
|
|
|
//#endregion
|
|
|
|
|
|
//#region 调整表单
|
|
@@ -2456,10 +2458,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async tabLazytreeAll () {//清表树信息
|
|
|
+ this.GLExcelLoading = true;
|
|
|
const { data: res } = await tabLazytreeAll({
|
|
|
modeId: this.GLExcelFrom.name,
|
|
|
name: this.GLExcelFrom.search,
|
|
|
})
|
|
|
+ this.GLExcelLoading = false;
|
|
|
console.log(res);
|
|
|
if (res.code === 200 && res.msg === '操作成功') {
|
|
|
this.exceldata = res.data
|