Files
device-voice-h5/api/modules/realname.js
luo 4dc86889c5
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 55s
fix:bug scan
2026-06-26 14:59:15 +08:00

13 lines
246 B
JavaScript

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