refine:rm export selected to zip example
This commit is contained in:
parent
065eaa93a2
commit
329f3b3714
|
@ -149,8 +149,8 @@ export const asyncRouterMap = [
|
||||||
name: 'excel',
|
name: 'excel',
|
||||||
icon: 'excel',
|
icon: 'excel',
|
||||||
children: [
|
children: [
|
||||||
{ path: 'download', component: _import('excel/index'), name: '导出excel' },
|
{ path: 'download', component: _import('excel/index'), name: 'export excel' },
|
||||||
{ path: 'download2', component: _import('excel/selectExcel'), name: '导出已选择项' },
|
{ path: 'download2', component: _import('excel/selectExcel'), name: 'export selected' },
|
||||||
{ path: 'upload', component: _import('excel/uploadExcel'), name: 'upload excel' }
|
{ path: 'upload', component: _import('excel/uploadExcel'), name: 'upload excel' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -161,8 +161,7 @@ export const asyncRouterMap = [
|
||||||
name: 'zip',
|
name: 'zip',
|
||||||
icon: 'zip',
|
icon: 'zip',
|
||||||
children: [
|
children: [
|
||||||
{ path: 'download', component: _import('zip/index'), name: '导出zip' },
|
{ path: 'download', component: _import('zip/index'), name: 'export zip' }
|
||||||
{ path: 'download2', component: _import('zip/select'), name: '导出已选择项' }
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="app-container">
|
|
||||||
<el-button style='margin-bottom:20px' type="primary" icon="document" @click="handleDownload" :loading="downloadLoading">导出已选择项</el-button>
|
|
||||||
<el-table :data="list" v-loading.body="listLoading" element-loading-text="拼命加载中" border fit highlight-current-row @selection-change="handleSelectionChange"
|
|
||||||
ref="multipleTable">
|
|
||||||
<el-table-column type="selection" align="center"></el-table-column>
|
|
||||||
<el-table-column align="center" label='ID' width="95">
|
|
||||||
<template scope="scope">
|
|
||||||
{{scope.$index}}
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="文章标题">
|
|
||||||
<template scope="scope">
|
|
||||||
{{scope.row.title}}
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="作者" width="95" align="center">
|
|
||||||
<template scope="scope">
|
|
||||||
<el-tag>{{scope.row.author}}</el-tag>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="阅读数" width="115" align="center">
|
|
||||||
<template scope="scope">
|
|
||||||
{{scope.row.pageviews}}
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column align="center" prop="created_at" label="发布时间" width="220">
|
|
||||||
<template scope="scope">
|
|
||||||
<i class="el-icon-time"></i>
|
|
||||||
<span>{{scope.row.display_time}}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { fetchList } from '@/api/article'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
list: null,
|
|
||||||
listLoading: true,
|
|
||||||
multipleSelection: [],
|
|
||||||
downloadLoading: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.fetchData()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
fetchData() {
|
|
||||||
this.listLoading = true
|
|
||||||
fetchList(this.listQuery).then(response => {
|
|
||||||
this.list = response.data.items
|
|
||||||
this.listLoading = false
|
|
||||||
})
|
|
||||||
},
|
|
||||||
handleSelectionChange(val) {
|
|
||||||
this.multipleSelection = val
|
|
||||||
},
|
|
||||||
handleDownload() {
|
|
||||||
if (this.multipleSelection.length) {
|
|
||||||
this.downloadLoading = true
|
|
||||||
require.ensure([], () => {
|
|
||||||
const { export_txt_to_zip } = require('vendor/Export2Zip')
|
|
||||||
const tHeader = ['序号', '文章标题', '作者', '阅读数', '发布时间']
|
|
||||||
const filterVal = ['id', 'title', 'author', 'pageviews', 'display_time']
|
|
||||||
const list = this.multipleSelection
|
|
||||||
const data = this.formatJson(filterVal, list)
|
|
||||||
export_txt_to_zip(tHeader, data, '列表文本', '压缩文本')
|
|
||||||
this.$refs.multipleTable.clearSelection()
|
|
||||||
this.downloadLoading = false
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
this.$message({
|
|
||||||
message: '请至少选择一条记录',
|
|
||||||
type: 'warning'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
formatJson(filterVal, jsonData) {
|
|
||||||
return jsonData.map(v => filterVal.map(j => v[j]))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
Loading…
Reference in New Issue