diff --git a/src/components/ExportButton/index.vue b/src/components/ExportButton/index.vue new file mode 100644 index 00000000..79b73cb5 --- /dev/null +++ b/src/components/ExportButton/index.vue @@ -0,0 +1,221 @@ + + + + {{ title }} + + + + + + diff --git a/src/components/ExportButton/processModal.vue b/src/components/ExportButton/processModal.vue new file mode 100644 index 00000000..d73aa83e --- /dev/null +++ b/src/components/ExportButton/processModal.vue @@ -0,0 +1,90 @@ + + + + + {{ currentNumber }} + / + {{ total }} + + + + + + {{ buttonName }} + + + + + diff --git a/src/views/table/complex-table.vue b/src/views/table/complex-table.vue index 295c5fc4..5bbe2b84 100644 --- a/src/views/table/complex-table.vue +++ b/src/views/table/complex-table.vue @@ -20,6 +20,11 @@ Export + + + async export + + reviewer @@ -151,6 +156,7 @@ import { fetchList, fetchPv, createArticle, updateArticle } from '@/api/article' import waves from '@/directive/waves' // waves directive import { parseTime } from '@/utils' import Pagination from '@/components/Pagination' // secondary package based on el-pagination +import ExportButton from '@/components/ExportButton/index' const calendarTypeOptions = [ { key: 'CN', display_name: 'China' }, @@ -167,7 +173,10 @@ const calendarTypeKeyValue = calendarTypeOptions.reduce((acc, cur) => { export default { name: 'ComplexTable', - components: { Pagination }, + components: { + Pagination, + ExportButton + }, directives: { waves }, filters: { statusFilter(status) { @@ -223,7 +232,29 @@ export default { timestamp: [{ type: 'date', required: true, message: 'timestamp is required', trigger: 'change' }], title: [{ required: true, message: 'title is required', trigger: 'blur' }] }, - downloadLoading: false + downloadLoading: false, + exportColumns: [ + { + title: 'timestamp', + key: 'timestamp' + }, + { + title: 'title', + key: 'title' + }, + { + title: 'type', + key: 'type' + }, + { + title: 'importance', + key: 'importance' + }, + { + title: 'status', + key: 'status' + } + ] } }, created() { @@ -242,6 +273,20 @@ export default { }, 1.5 * 1000) }) }, + // 导出请求 + request(page, pageSize) { + const listQuery = JSON.parse(JSON.stringify(this.listQuery)) + listQuery.page = page + listQuery.pageSize = pageSize + return new Promise(resolve => { + fetchList(listQuery).then(response => { + response.data.items.map(item => { + item.timestamp = parseTime(item.timestamp, '{y}-{m}-{d} {h}:{i}') + }) + resolve(response.data.items) + }) + }) + }, handleFilter() { this.listQuery.page = 1 this.getList()