'保安项目提交'

This commit is contained in:
esacpe
2025-09-22 09:01:41 +08:00
commit 21e2a12e3c
1439 changed files with 336271 additions and 0 deletions

34
src/api/xfzg.js Normal file
View File

@ -0,0 +1,34 @@
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
});
};
// 条件查询车辆盘查信息
export const getClpcList = (data = {}) => {
return request({
url: api + "/tbHcBpccl/getClpcList",
method: "POST",
data
});
};
//人员核查档案
export function getHjyjData(data){
return request({
url: "/mosty-base/other/getHjyjData",
method: "POST",
data
})
}