2025-02-27 14:44:08 +08:00
|
|
|
import request from '@/config/axios'
|
|
|
|
|
|
|
|
export const validateApi = data => request.post({ url: '/license/validate', data })
|
|
|
|
export const buildVersionApi = () => request.get({ url: '/license/version' })
|
|
|
|
export const updateInfoApi = data => request.post({ url: '/license/update', data })
|
2025-06-23 17:36:05 +08:00
|
|
|
export const revertApi = () => request.post({ url: '/license/revert' })
|