Files
ba_web/src/api/xfzg.js

35 lines
681 B
JavaScript
Raw Normal View History

2025-09-22 09:01:41 +08:00
import request from "@/utils/request";
const api = "/mosty-api/mosty-jmxf";
/**
* 条件查询人员盘查信息
* @param {*} params
* @returns
*/
export const getRypcList = (data = {}) => {
return request({
url: api + "/tbHcBpcry/getRypcList",
method: "POST",
data
});
};
2025-09-26 12:56:52 +08:00
// 条件查询车辆盘查信息
2025-09-22 09:01:41 +08:00
export const getClpcList = (data = {}) => {
return request({
url: api + "/tbHcBpccl/getClpcList",
method: "POST",
data
});
};
//人员核查档案
export function getHjyjData(data){
return request({
2025-09-26 12:56:52 +08:00
url: "/mosty-api/mosty-base/other/getHjyjData",
2025-09-22 09:01:41 +08:00
method: "POST",
data
})
}