feat: xpack功能初版

This commit is contained in:
fit2cloud-chenyw
2021-05-12 16:19:41 +08:00
parent 53b1e6a600
commit 469aa684fc
32 changed files with 1679 additions and 29 deletions

View File

@@ -0,0 +1,8 @@
import request from '@/utils/request'
export function validateLic() {
return request({
url: '/anonymous/license/validate',
method: 'get'
})
}

View File

@@ -29,3 +29,17 @@ export function validateUserName(data) {
data
})
}
export function getUIinfo() {
return request({
url: '/system/ui/info',
method: 'get'
})
}
export function uiImage(imageId) {
return request({
url: '/display/file/' + imageId,
method: 'get'
})
}