Export2Excel.js 云盘地址
链接:https://pan.baidu.com/s/1wdXfHg5CQ4PlgV6V5RY1VA
提取码:h784
this.downloadLoading = true
import('@/vendor/Export2Excel').then(excel => {
const tHeader = ['用户名', '手机号码', '性别', '生日', '状态']
const filterVal = ['username', 'mobile', 'gender', 'birthday', 'status']
excel.export_json_to_excel2(tHeader, this.list, filterVal, '用户信息')
this.downloadLoading = false
})