InterfaceChange

This commit is contained in:
shijing 2022-01-25 09:54:40 +08:00
parent 3db99496fe
commit b3d54ce4c0
2 changed files with 15 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import request from '@/utils/request'
export function login(data) { export function login(data) {
return request({ return request({
url: '/token/', url: '/auth/token/',
method: 'post', method: 'post',
data data
}) })
@ -10,7 +10,7 @@ export function login(data) {
export function logout() { export function logout() {
return request({ return request({
url: '/token/black/', url: '/auth/token/black/',
method: 'get' method: 'get'
}) })
} }

View File

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
name: "largeScreen"
}
</script>
<style scoped>
</style>