增加域名映射支持

This commit is contained in:
aoshiguchen
2023-04-02 23:35:21 +08:00
parent b07b7567e2
commit 22d9bb9d39
35 changed files with 900 additions and 81 deletions
+9
View File
@@ -0,0 +1,9 @@
import request from '@/utils/request'
export function domainNameBindInfo(query) {
return request({
url: '/domain-name/bind-info',
method: 'get',
params: query
})
}
+17
View File
@@ -0,0 +1,17 @@
import request from '@/utils/request'
export function fetchList(query) {
return request({
url: '/protocal/page',
method: 'get',
params: query
})
}
export function protocalList(query) {
return request({
url: '/protocal/list',
method: 'get',
params: query
})
}