diff --git a/src/views/traceManage/pcap/file.vue b/src/views/traceManage/pcap/file.vue index f5ae6271..47c7a6ad 100644 --- a/src/views/traceManage/pcap/file.vue +++ b/src/views/traceManage/pcap/file.vue @@ -243,7 +243,7 @@ function fnDirCD(dir: string, index?: number) { queryParams.search = `${neType}_${queryParams.neId}`; } else { nePathArr.value = [ - `/tmp/omc/tcpdump/${neType.toLowerCase()}/${queryParams.neId}`, + `/usr/local/omc/tcpdump/${neType.toLowerCase()}/${queryParams.neId}`, ]; queryParams.search = ''; } @@ -269,7 +269,7 @@ function fnNeChange(keys: any, _: any) { nePathArr.value = ['/tmp']; queryParams.search = `${neType}_${neId}`; } else { - nePathArr.value = [`/tmp/omc/tcpdump/${neType.toLowerCase()}/${neId}`]; + nePathArr.value = [`/usr/local/omc/tcpdump/${neType.toLowerCase()}/${neId}`]; queryParams.search = ''; } fnGetList(1); @@ -292,9 +292,10 @@ function fnGetList(pageNum?: number) { } queryParams.path = nePathArr.value.join('/'); listNeFiles(toRaw(queryParams)).then(res => { - if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) { - tablePagination.total = res.total; - tableState.data = res.rows; + if (res.code === RESULT_CODE_SUCCESS) { + const { total, rows } = res.data; + tablePagination.total = total; + tableState.data = rows; if ( tablePagination.total <= (queryParams.pageNum - 1) * tablePagination.pageSize && @@ -433,7 +434,7 @@ onMounted(() => { {{ t('common.downloadText') }} - + ) { ); } else { const { neType, neId } = from.data; - const path = `/tmp/omc/tcpdump/${neType.toLowerCase()}/${neId}/${taskCode}`; + const path = `/usr/local/omc/tcpdump/${neType.toLowerCase()}/${neId}/${taskCode}`; reqArr.push( getNeDirZip({ neType, @@ -518,7 +518,7 @@ function fnModalVisibleByVive(id: string | number) { const from = modalState.from[id]; if (!from) return; const { neType, neId } = from.data; - const path = `/tmp/omc/tcpdump/${neType.toLowerCase()}/${neId}/${ + const path = `/usr/local/omc/tcpdump/${neType.toLowerCase()}/${neId}/${ from.taskCode }`; const files = from.taskFiles.filter(f => f.endsWith('log'));