|
|
@@ -666,6 +666,18 @@ export default {
|
|
|
ActionUtils.success('导入成功')
|
|
|
})
|
|
|
},
|
|
|
+ //数据导出
|
|
|
+ getIbpsExport(columns, data, title, message, nameKey = 'name') {
|
|
|
+ IbpsExport.excel({
|
|
|
+ columns: columns,
|
|
|
+ data: data,
|
|
|
+ nameKey: nameKey,
|
|
|
+ title: title
|
|
|
+ }).then(() => {
|
|
|
+ const msg = message ? message : '导出成功'
|
|
|
+ ActionUtils.success(msg)
|
|
|
+ })
|
|
|
+ },
|
|
|
// 导出
|
|
|
handleExport(button, index) {
|
|
|
const position = button.position
|