hrms-manual/node_modules/vue-table-to-excel/docs/index.html
2023-09-06 14:51:44 +07:00

42 lines
No EOL
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="./js/index.umd.js"></script>
</head>
<body>
<button id="download">导出</button>
<script>
const downloadEl = document.getElementById('download')
downloadEl.onclick = function () {
jsontoexcel.getXlsx([{
name: '路人甲',
phone: '123456789',
email: '000@123456.com',
},
{
name: '炮灰乙',
phone: '123456789',
email: '000@123456.com'
},
{
name: '土匪丙',
phone: '123456789',
email: '000@123456.com'
},
{
name: '流氓丁',
phone: '123456789',
email: '000@123456.com'
},
], ['姓名', '手机号码', '邮箱', '年龄'], '城乡居民统计表.xlsx')
}
</script>
</body>
</html>