增加批量删除功能 调节分页器样式

This commit is contained in:
pixel
2021-04-01 17:15:24 +08:00
parent 7334ad9f33
commit 4faa807c53
8 changed files with 104 additions and 2 deletions

View File

@@ -115,4 +115,20 @@ export const deleteApi = (data) => {
method: 'post',
data
})
}
// @Tags SysApi
// @Summary 删除选中Api
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body request.IdsReq true "ID"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
// @Router /api/deleteApisByIds [delete]
export const deleteApisByIds = (data) => {
return service({
url: "/api/deleteApisByIds",
method: 'delete',
data
})
}