md功能实现

This commit is contained in:
simple321vip
2022-04-12 00:12:35 +08:00
parent fc2aa9d22b
commit 1c8c8264c2
6 changed files with 103 additions and 15 deletions
+10
View File
@@ -0,0 +1,10 @@
import request from '../utils/request'
const authorize = (params: any) => {
return request({
url: '/api/vi/authorize',
method: 'post',
data: {}
})
}
export { authorize }