This commit is contained in:
FLL
2025-09-10 17:20:25 +08:00
parent d35577d0e4
commit 60eed1ab12
9 changed files with 116 additions and 30 deletions

View File

@@ -37,6 +37,24 @@ export function getAccessControl() {
export function getCamera() {
return requestClient.get<any>('/sis/deviceManage/online');
}
//车流
export async function queryTwentyfourRunningDatasByPlNos() {
let params = {
"orgId": "10012",
"plNos": [
"PFN000000012",
"PFN000000025"
]
};
const response = await fetch('https://server.cqnctc.com:6081/web/thirdParty/queryTwentyfourRunningDatasByPlNos', {
method: 'POST', // 指定请求方法为POST
headers: {
'Content-Type': 'application/json', // 设置内容类型为JSON
},
body: JSON.stringify(params), // 将参数对象转换为JSON字符串并作为请求体发送
});
return response.json();
}
// /**
// * 导出资产管理列表
// * @param params