no message

Former-commit-id: 9d931bf8ee17498b3cb6a4e8747a35379053d292
Former-commit-id: 839c0a8471016d910c9504e5a1e6cbd22a95479a
Former-commit-id: 7ffc8041a93f682c2b0cc6bed1c400437dff29fb
This commit is contained in:
liyang
2018-06-05 16:21:06 +08:00
parent f29021343b
commit b5493ec1c2
7 changed files with 60 additions and 40 deletions

View File

@@ -1,65 +0,0 @@
<template>
<Container>
<PageHeader
slot="header"
title="导入 csv"
url="https://github.com/mholt/PapaParse">
</PageHeader>
<div class="dd-mb">
<el-button @click="download">
<Icon name="download"></Icon>
下载演示 .csv 表格
</el-button>
</div>
<div class="dd-mb">
<el-upload :before-upload="handleUpload" action="default">
<el-button type="success">
<Icon name="file-o"></Icon>
选择要导入的 .csv 表格
</el-button>
</el-upload>
</div>
<el-table v-bind="table" class="dd-mb">
<el-table-column
v-for="(item, index) in table.columns"
:key="index"
:prop="item.prop"
:label="item.label">
</el-table-column>
</el-table>
<Markdown url="/static/md/插件 - 导入.md"></Markdown>
</Container>
</template>
<script>
export default {
data () {
return {
table: {
columns: [],
data: [],
size: 'mini',
stripe: true,
border: true
}
}
},
methods: {
handleUpload (file) {
this.$import.csv(file)
.then(res => {
this.table.columns = Object.keys(res.data[0]).map(e => ({
label: e,
prop: e
}))
this.table.data = res.data
})
return false
},
download () {
window.location.href = 'http://fairyever.qiniudn.com/d2-admin-import-csv-demo.csv'
}
}
}
</script>