Compare commits
9 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
568ba15de4 | 2 months ago |
|
|
9d483b6056 | 2 months ago |
|
|
f92bb65c61 | 2 months ago |
|
|
d3f2e8a31e | 2 months ago |
|
|
eff061ad83 | 2 months ago |
|
|
d3f9c44bfa | 2 months ago |
|
|
c47727e800 | 2 months ago |
|
|
37dc996c59 | 2 months ago |
|
|
ed90f7c48d | 2 months ago |
5 changed files with 40 additions and 10 deletions
@ -0,0 +1,36 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
/** 按房间ID查询该房间下所有地图平台图标 */ |
||||
|
export function listByRoomId(roomId) { |
||||
|
return request({ |
||||
|
url: '/system/roomPlatformIcon/list', |
||||
|
method: 'get', |
||||
|
params: { roomId } |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 新增房间地图平台图标 */ |
||||
|
export function addRoomPlatformIcon(data) { |
||||
|
return request({ |
||||
|
url: '/system/roomPlatformIcon', |
||||
|
method: 'post', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 修改房间地图平台图标(位置/朝向/缩放) */ |
||||
|
export function updateRoomPlatformIcon(data) { |
||||
|
return request({ |
||||
|
url: '/system/roomPlatformIcon', |
||||
|
method: 'put', |
||||
|
data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 删除房间地图平台图标 */ |
||||
|
export function delRoomPlatformIcon(id) { |
||||
|
return request({ |
||||
|
url: '/system/roomPlatformIcon/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
|
Before Width: | Height: | Size: 1001 B After Width: | Height: | Size: 1001 B |
Loading…
Reference in new issue