2017-09-11 06:43:12 +00:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
2018-08-19 08:55:24 +00:00
|
|
|
<upload-excel-component :on-success="handleSuccess" :before-upload="beforeUpload"/>
|
2017-09-11 06:43:12 +00:00
|
|
|
<el-table :data="tableData" border highlight-current-row style="width: 100%;margin-top:20px;">
|
2018-08-19 08:55:24 +00:00
|
|
|
<el-table-column v-for="item of tableHeader" :prop="item" :label="item" :key="item"/>
|
2017-09-11 06:43:12 +00:00
|
|
|
</el-table>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2017-12-15 06:07:55 +00:00
|
|
|
import UploadExcelComponent from '@/components/UploadExcel/index.vue'
|
2017-09-11 06:43:12 +00:00
|
|
|
|
|
|
|
export default {
|
2018-08-19 08:55:24 +00:00
|
|
|
name: 'UploadExcel',
|
2017-10-31 02:49:24 +00:00
|
|
|
components: { UploadExcelComponent },
|
2017-09-11 06:43:12 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tableData: [],
|
|
|
|
tableHeader: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2018-06-20 05:29:57 +00:00
|
|
|
beforeUpload(file) {
|
2018-06-28 01:53:55 +00:00
|
|
|
const isLt1M = file.size / 1024 / 1024 < 1
|
2018-06-20 05:29:57 +00:00
|
|
|
|
2018-06-28 01:53:55 +00:00
|
|
|
if (isLt1M) {
|
2018-06-20 05:29:57 +00:00
|
|
|
return true
|
|
|
|
}
|
2018-06-28 01:53:55 +00:00
|
|
|
|
2018-06-20 05:29:57 +00:00
|
|
|
this.$message({
|
2018-06-28 01:53:55 +00:00
|
|
|
message: 'Please do not upload files larger than 1m in size.',
|
2018-06-20 05:29:57 +00:00
|
|
|
type: 'warning'
|
|
|
|
})
|
|
|
|
return false
|
|
|
|
},
|
2018-06-12 02:53:08 +00:00
|
|
|
handleSuccess({ results, header }) {
|
|
|
|
this.tableData = results
|
|
|
|
this.tableHeader = header
|
2017-09-11 06:43:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|