first commit

This commit is contained in:
sexygoat
2026-04-11 14:42:14 +08:00
commit b962c9c716
62 changed files with 7323 additions and 0 deletions

11
api/modules/realname.js Normal file
View File

@@ -0,0 +1,11 @@
import request from '@/utils/request.js';
export const realnameApi = {
getLink(identifier, iccid) {
return request({
url: '/api/c/v1/realname/link',
method: 'GET',
data: { identifier, iccid }
});
}
};