Files
jinbooks/jinbooks-ui/src/api/system/apps-jwt.ts
jinbooks_dev 1e2b0fd9d4 v1.0.1
2025-06-03 09:46:52 +08:00

32 lines
544 B
TypeScript

import request from '@/utils/Request'
export function getAppsJwtInit(): any {
return request({
url: '/apps/jwt/init',
method: 'get'
})
}
export function getAppsJwt(id : any): any {
return request({
url: '/apps/jwt/get/' + id,
method: 'get'
})
}
export function addAppsJwt(data : any): any {
return request({
url: '/apps/jwt/add',
method: 'post',
data: data
})
}
export function updateAppsJwt(data : any): any {
return request({
url: '/apps/jwt/update',
method: 'put',
data: data
})
}