no message

Former-commit-id: 749c159b54ea39951ddad455ca99256a55745644
Former-commit-id: 2dda6f7f898b9fc36d236eb478a615d9cd03ba1f
Former-commit-id: a21343caef3ca2939d104cbdba14780da79381ef
This commit is contained in:
李杨
2018-02-09 19:52:42 +08:00
parent c997f662e8
commit 554162775c
2 changed files with 14 additions and 11 deletions

View File

@@ -4,12 +4,12 @@
slot="header"
title="基本示例">
</PageHeader>
<div>
<!-- <div>
<el-button @click="exportCsv">
<Icon name="download"></Icon>
exportCsv
</el-button>
</div>
</div> -->
<el-table v-bind="table" style="width: 100%" class="dd-mb">
<el-table-column
v-for="(item, index) in table.columns"
@@ -25,8 +25,8 @@
// 假数据
import table from './data'
// 库
// import Csv from '@/utils/csv.js'
// import ExportCsv from '@/utils/export-csv.js'
import Csv from '@/utils/csv.js'
import ExportCsv from '@/utils/export-csv.js'
export default {
data () {
return {
@@ -39,12 +39,14 @@ export default {
}
}
},
mounted () {
this.exportCsv()
},
methods: {
exportCsv (params) {
let _params = Object.assign({}, params, {
filename: 'table'
})
console.log(_params)
exportCsv (params = {}) {
const noHeader = false
const data = Csv(this.table.columns, this.table.data, params, noHeader)
ExportCsv.download('table.csv', data)
}
}
}