You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
402 B
16 lines
402 B
|
4 years ago
|
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 = () => {
|
||
|
|
return service({
|
||
|
|
url: '/jwt/jsonInBlacklist',
|
||
|
|
method: 'post'
|
||
|
|
})
|
||
|
|
}
|