项目级大屏地球

This commit is contained in:
2025-09-09 19:52:26 +08:00
parent 4bd192dc87
commit 35a7825759
6 changed files with 893 additions and 55 deletions

View File

@ -112,4 +112,4 @@ export const getWeather = (projectId) => {
url: '/money/big/screen/weather/' + projectId,
method: 'get'
});
};
};

View File

@ -64,3 +64,27 @@ export const getScreenGeneralize = (projectId: number | string) => {
method: 'get',
});
};
// 获取gps数据
export const getGps = (projectId) => {
return request({
url: '/project/big/screen/getClientList/' + projectId,
method: 'get'
});
};
// 选中列表
export const getSelectList = (params) => {
return request({
url: '/project/big/screen/getList',
method: 'get',
params
});
};
// 设置选中
export const setSelect = (data) => {
return request({
url: '/project/big/screen/setList',
method: 'post',
data
});
};