|
@@ -2,17 +2,17 @@
|
|
|
<div class="app-container">
|
|
|
<h3 class="toolbar">
|
|
|
<div class="tool">
|
|
|
- <!-- <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownload">批量下载</el-button> -->
|
|
|
+ <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownloadBatch">批量下载</el-button>
|
|
|
</div>
|
|
|
</h3>
|
|
|
- <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange" style="width: 100%" @select-all="selectAll">
|
|
|
+ <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange" style="width: 100%">
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
<el-table-column label="序号" type="index" width="50" align="center"></el-table-column>
|
|
|
<el-table-column label="文件名称" prop="fileName" align="center"></el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" @click="handleView(scope.row)">查看</el-button>
|
|
|
- <!-- <el-button type="text" @click="handleDownload(scope.row)">下载</el-button> -->
|
|
|
+ <!-- <el-button type="text" @click="handleView(scope.row)">查看</el-button> -->
|
|
|
+ <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
|
|
|
<el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -62,7 +62,6 @@
|
|
|
},
|
|
|
created() {
|
|
|
this.id = this.$route.params.id || undefined;
|
|
|
- console.log(this.id)
|
|
|
this.getData()
|
|
|
},
|
|
|
methods: {
|
|
@@ -92,6 +91,17 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ handleDownload(row) {
|
|
|
+ window.open("http://124.232.146.72:7015/api/common/attach/"+row.id)
|
|
|
+ },
|
|
|
+ handleDownloadBatch() {
|
|
|
+ if(this.selectionList.length <=0) {
|
|
|
+ this.$message.error('请选择要下载的数据');
|
|
|
+ return
|
|
|
+ }
|
|
|
+ window.open("http://124.232.146.72:7015/api/common/attach/"+this.ids)
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
handleBatchDelte() {
|
|
|
if(this.selectionList.length <=0) {
|
|
|
this.$message.error('请选择要删除的数据');
|
|
@@ -125,12 +135,12 @@
|
|
|
})
|
|
|
},
|
|
|
// 取消全选
|
|
|
- selectAll(selection) {
|
|
|
- if (selection.length == 0) {
|
|
|
- let list = this.selectedList.filter(item => !this.list.some(ele => ele.id === item.id));
|
|
|
- this.selectionList = list;
|
|
|
- }
|
|
|
- },
|
|
|
+ // selectAll(selection) {
|
|
|
+ // if (selection.length == 0) {
|
|
|
+ // let list = this.selectedList.filter(item => !this.list.some(ele => ele.id === item.id));
|
|
|
+ // this.selectionList = list;
|
|
|
+ // }
|
|
|
+ // },
|
|
|
handleSelectionChange(val) {
|
|
|
this.selectionList = val;
|
|
|
if(this.selectionList.length > 0) {
|