This commit is contained in:
lcw
2025-09-24 19:34:38 +08:00
parent c6a0f0b9aa
commit e712c4cb34
3 changed files with 242 additions and 20253 deletions

21
src/api/pxzx.js Normal file
View File

@ -0,0 +1,21 @@
import request from "@/utils/request";
const api = "/mosty-base";
//根据身份证号码查询个人信息
export const cyryPage = (data) => {
return request({
url: api + "/baxx/cyry/page",
method: "POST",
data
});
};
// 查询公司下的年检人员
// /mosty-base/baxx / njry / list
export const njryList = (data) => {
return request({
url: api + "/baxx/njry/list",
method: "POST",
data
});
};