This commit is contained in:
张良(004796)
2024-02-19 11:54:36 +08:00
parent 6a65ec1ab2
commit db9b4e845b
4 changed files with 71 additions and 5 deletions

View File

@@ -1,6 +1,21 @@
import { http } from '@/utils/http/axios';
const baseUrl = '/api'
export const domainList = 'https://dk-1257812345.cos.ap-nanjing.myqcloud.com/domain.txt';
export function getDomainList(){
return http.request({
url: domainList,
method: 'GET'
},
{
withToken: false,
})
}
/**
* @description: sendSmsRegister
*/