支持服务端抽稀和服务发布

This commit is contained in:
lin
2025-11-02 23:50:07 +08:00
parent 2a5435c810
commit 311b59870c
29 changed files with 1930 additions and 367 deletions

View File

@@ -613,6 +613,40 @@ export function resetLevel() {
url: '/api/common/channel/map/reset-level'
})
}
export function clearThin(id) {
return request({
method: 'get',
url: '/api/common/channel/map/thin/clear',
params: {
id: id
}
})
}
export function thinProgress(id) {
return request({
method: 'get',
url: '/api/common/channel/map/thin/progress',
params: {
id: id
}
})
}
export function saveThin(id) {
return request({
method: 'get',
url: '/api/common/channel/map/thin/save',
params: {
id: id
}
})
}
export function drawThin(data) {
return request({
method: 'post',
url: '/api/common/channel/map/thin/draw',
data: data
})
}
export function test() {
return request({
method: 'get',