新增后端带条件导出功能(示例见用户管理控制器)

This commit is contained in:
dqjdda
2019-08-26 17:38:31 +08:00
parent 52393ef57f
commit 14aa13e718
3 changed files with 26 additions and 12 deletions

View File

@@ -7,6 +7,13 @@ export function add(data) {
data
})
}
export function downloadUser() {
return request({
url: 'api/users/download',
method: 'get',
responseType: 'blob'
})
}
export function del(id) {
return request({