- 安装
npm install js-table2excel(yarn add js-table2excel)
2.导入
import table2excel from 'js-table2excel'
3.使用
const column = [
{
title: '码牌号',
key: 'payQrCode',
type: 'text',
},
{
title: '二维码',
key: 'picUrl',
type: 'image',
width: "200",
height: "200",
},
{
title: '商户名',
key: 'merchantName',
type: 'text',
},
{
title: '门店名',
key: 'storeName',
type: 'text',
},
]
//param1:表头 param2:表数据 param3:表明
table2excel(column, res.data, "导出码牌")