fix: 识别 excel 类型

This commit is contained in:
taojinlong
2021-07-30 12:27:14 +08:00
parent 0ab579b4fe
commit 577fa304f0
3 changed files with 16 additions and 8 deletions

View File

@@ -236,6 +236,7 @@ export default {
this.tableData = []
if (this.currGroup) {
this.dsLoading = true
this.tables = [];
post('/dataset/table/list', {
sort: 'type asc,name asc,create_time desc',
sceneId: this.currGroup.id,
@@ -351,6 +352,7 @@ export default {
if (!this.isTreeSearch) {
if (node.data.id) {
this.dsLoading = true
this.tables = [];
post('/dataset/table/listAndGroup', {
sort: 'type asc,name asc,create_time desc',
sceneId: node.data.id,