执法一张图功能调整
This commit is contained in:
parent
45aeb1beae
commit
c0eca4905c
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -237,5 +237,5 @@
|
|||
|
||||
## 执法一张图
|
||||
#### 功能说明
|
||||
#### 类定义
|
||||
#### 类定义
|
||||
#### 界面设计
|
||||
|
|
@ -24,6 +24,7 @@ import java.util.Map;
|
|||
public class BigScreenController {
|
||||
|
||||
private final BigScreenService bigScreenService;
|
||||
|
||||
public BigScreenController(BigScreenService bigScreenService) {
|
||||
this.bigScreenService = bigScreenService;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue