pms/web/src/api/jwt.js

15 lines
401 B
JavaScript
Raw Normal View History

import service from '@/utils/request'
// @Tags jwt
// @Summary jwt加入黑名单
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Success 200 {string} string "{"success":true,"data":{},"msg":"拉黑成功"}"
// @Router /jwt/jsonInBlacklist [post]
export const jsonInBlacklist = () => {
2021-06-02 14:11:45 +08:00
return service({
url: '/jwt/jsonInBlacklist',
method: 'post'
})
}