执法一张图功能调整

This commit is contained in:
jiangzongtao 2025-05-09 18:21:15 +08:00
parent 45aeb1beae
commit c0eca4905c
3 changed files with 12 additions and 1 deletions

View File

@ -100,6 +100,16 @@ const handleGO = (data) => {
}
}
const handleTo = (data) => {
topActive.value = data.path
if (data.router) {
router.push({
path: data.path,
})
} else {
window.open(`${baseURL}/${data.path}/index.html#/`)
}
}
const handleEdit = () => {
userStore.isDraggable = true

View File

@ -237,5 +237,5 @@
## 执法一张图
#### 功能说明
#### 类定义
#### 类定义
#### 界面设计

View File

@ -24,6 +24,7 @@ import java.util.Map;
public class BigScreenController {
private final BigScreenService bigScreenService;
public BigScreenController(BigScreenService bigScreenService) {
this.bigScreenService = bigScreenService;
}