feat
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user