|
@@ -54,7 +54,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.exportStatus === 0">
|
|
|
<el-button type="primary" class="handle" size="small"
|
|
|
- @click="handleDownFile(scope.row.exportFilePath)">下载</el-button>
|
|
|
+ @click="handleDownFile(scope.row.exportFilePath,scope.row.exportName)">下载</el-button>
|
|
|
</span>
|
|
|
<span v-if="scope.row.exportStatus !== 2">
|
|
|
<el-button type="primary" class="handle" size="small"
|
|
@@ -77,7 +77,7 @@
|
|
|
|
|
|
<script>
|
|
|
import "./log.scss";
|
|
|
-import { exportList,deleteExportData } from "@/api/log";
|
|
|
+import { exportList,deleteExportData,RecordFile } from "@/api/log";
|
|
|
export default {
|
|
|
name: "DataExport",
|
|
|
components: {},
|
|
@@ -228,8 +228,10 @@ export default {
|
|
|
.catch(err => { console.error(err) })
|
|
|
},
|
|
|
//下载文件
|
|
|
- handleDownFile(url){
|
|
|
- window.location.href=url
|
|
|
+ async handleDownFile(url,fileName){
|
|
|
+ //window.location.href=url
|
|
|
+ const fileDownName=fileName+'_'+(new Date().getTime())
|
|
|
+ const resUrl=await RecordFile(url, fileDownName)
|
|
|
}
|
|
|
},
|
|
|
};
|