diff options
| author | unknown <[email protected]> | 2022-06-24 17:11:23 +0800 |
|---|---|---|
| committer | unknown <[email protected]> | 2022-06-24 17:11:23 +0800 |
| commit | 8565e1bb597b481447d33bac6d8c48c2c45215de (patch) | |
| tree | a4f10c8f7f85a1a8b5c947f7d0d2f967d808a9c4 /UI source code/dns_mapping_ui-master/src/api/login.js | |
| parent | 8165dfcc7bdb0b2e6f1c05f8e7c93553c0e7911e (diff) | |
Diffstat (limited to 'UI source code/dns_mapping_ui-master/src/api/login.js')
| -rw-r--r-- | UI source code/dns_mapping_ui-master/src/api/login.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/UI source code/dns_mapping_ui-master/src/api/login.js b/UI source code/dns_mapping_ui-master/src/api/login.js new file mode 100644 index 0000000..bdafcbc --- /dev/null +++ b/UI source code/dns_mapping_ui-master/src/api/login.js @@ -0,0 +1,36 @@ +import request from '@/utils/request' + +export function login(username, password, code, uuid) { + return request({ + url: 'auth/login', + method: 'post', + data: { + username, + password, + code, + uuid + } + }) +} + +export function getInfo() { + return request({ + url: 'auth/info', + method: 'get' + }) +} + +export function getCodeImg() { + return request({ + url: 'auth/code', + method: 'get' + }) +} + +export function logout() { + return request({ + url: 'auth/logout', + method: 'delete' + }) +} + |
