增加批量修改通道的业务分组以及行政区划,支持筛选业务分组和行政区划,支持抽稀还原,国标通道编辑增加表单校验

This commit is contained in:
lin
2025-10-30 15:05:50 +08:00
parent 091d6e67ee
commit fa9aaf3fa2
20 changed files with 395 additions and 104 deletions

View File

@@ -60,7 +60,7 @@ export function add(data) {
}
export function getList(params) {
const { page, count, query, online, hasRecordPlan, channelType } = params
const { page, count, query, online, hasRecordPlan, channelType, civilCode, parentDeviceId } = params
return request({
method: 'get',
url: '/api/common/channel/list',
@@ -70,7 +70,9 @@ export function getList(params) {
channelType: channelType,
query: query,
online: online,
hasRecordPlan: hasRecordPlan
hasRecordPlan: hasRecordPlan,
civilCode: civilCode,
parentDeviceId: parentDeviceId
}
})
}
@@ -605,6 +607,12 @@ export function saveLevel(data) {
data: data
})
}
export function resetLevel() {
return request({
method: 'post',
url: '/api/common/channel/map/reset-level'
})
}
export function test() {
return request({
method: 'get',