本文主要是介绍vue导入excel文件,vue导入多个sheets,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
用input 导入 excel ,然后生成表格,然后调用接口上传到后台
html 导入按钮和选择文件的弹框
<el-button v-waves :loading='downloadLoading' class='filter-item' type='primary' icon='el-icon-download' @click='daoru'>导入</el-button><el-dialog title="导入文件" :visible.sync="excelImportShow"><a href="javascript:;" class="file"><input id="upload" type="file" @change="importfxx(this)" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" /></a><div id="demo"></div><div slot="footer" class="dialog-footer"><el-button @click.native="excelImportShow = false">取消</el-button><el-button type="primary" @click.native="submit">提交</el-button></div></el-dialog>
js 重中之重 导入 excel 开始啦
1.data里面的数据
excelImportShow: false, //导入文件的弹框uploadArr: [], // 上传给后台的数据realname: '', // 以下都是我要转换的数据,因人而异gender: '',
这篇关于vue导入excel文件,vue导入多个sheets的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!