jwt.js 402 B

123456789101112131415
  1. import service from '@/utils/request'
  2. // @Tags jwt
  3. // @Summary jwt加入黑名单
  4. // @Security ApiKeyAuth
  5. // @accept application/json
  6. // @Produce application/json
  7. // @Success 200 {string} string "{"success":true,"data":{},"msg":"拉黑成功"}"
  8. // @Router /jwt/jsonInBlacklist [post]
  9. export const jsonInBlacklist = () => {
  10. return service({
  11. url: '/jwt/jsonInBlacklist',
  12. method: 'post'
  13. })
  14. }