项目级大屏地球
This commit is contained in:
@ -112,4 +112,4 @@ export const getWeather = (projectId) => {
|
||||
url: '/money/big/screen/weather/' + projectId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
};
|
@ -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
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user