解决导航栏显示上次打开所有导航栏记录bug

This commit is contained in:
zhujiyan
2024-08-05 11:20:35 +08:00
parent 12ecbbeb34
commit 5a6951a866
53 changed files with 3740 additions and 63 deletions

View File

@@ -8,6 +8,22 @@ export function saveLogParam() {
})
}
//获取去所有区域列表
export function getAllDeptList() {
return createAxios({
url: '/user-boot/dept/orgTreeSelector',
method: 'GET'
})
}
// 获取省市区下拉框
export function areaSelect() {
return createAxios({
url: '/system-boot/area/areaSelect',
method: 'POST'
})
}
// 区域列表
export function getAreaList() {
return createAxios({
@@ -24,7 +40,7 @@ export function getDeviceTree() {
})
}
// 获取波形数据
export function analyseWave(params:string) {
export function analyseWave(params: string) {
return createAxios({
url: '/cs-harmonic-boot/event/analyseWave?eventId=' + params,
method: 'get'