diff --git a/src/views/data-collect/data-set-manage/components/right-table.vue b/src/views/data-collect/data-set-manage/components/right-table.vue index 714b368..67d1a86 100644 --- a/src/views/data-collect/data-set-manage/components/right-table.vue +++ b/src/views/data-collect/data-set-manage/components/right-table.vue @@ -5,7 +5,7 @@ - diff --git a/src/views/data-collect/file-share-manage/components/right-table.vue b/src/views/data-collect/file-share-manage/components/right-table.vue index 2a09cb4..4118eb6 100644 --- a/src/views/data-collect/file-share-manage/components/right-table.vue +++ b/src/views/data-collect/file-share-manage/components/right-table.vue @@ -4,8 +4,8 @@ - - + @@ -62,7 +62,7 @@ export default { row: {}, title: '分享', queryParams: { - dataTypeName: undefined, + fileName: undefined, }, tableData: [], columns: [], @@ -102,7 +102,8 @@ export default { if (!Array.isArray(this.columns) || this.columns.length < 1) return const targetProp = this.columns[0] && this.columns[0].prop if (!targetProp) return - const keyword = String(this.queryParams.dataTypeName || '').trim() + const keyword = String(this.queryParams.fileName || '').trim() + console.log(keyword+"keyword") if (!keyword) { // 空关键字还原 this.filteredManual = null @@ -128,7 +129,7 @@ export default { // 重置 onResetQuery() { - this.queryParams = { dataTypeName: undefined } + this.queryParams = { fileName: undefined } this.filteredManual = null this.computeTableHeight() },