fix:bug scan
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 55s

This commit is contained in:
luo
2026-06-26 14:59:15 +08:00
parent 60fa91ea25
commit 4dc86889c5
5 changed files with 183 additions and 15 deletions

View File

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