diff --git a/src/layout/components/Header/ShortcutModal.vue b/src/layout/components/Header/ShortcutModal.vue
index 05bb802..a726f9f 100644
--- a/src/layout/components/Header/ShortcutModal.vue
+++ b/src/layout/components/Header/ShortcutModal.vue
@@ -65,7 +65,7 @@ defineExpose({
全局快捷方式
-
+
|
进入“一键查看”主页 |
@@ -95,7 +95,7 @@ defineExpose({
打开可疑文件夹 |
-
+
|
隐藏/显示当前场景左侧筛选区 |
@@ -123,38 +123,41 @@ defineExpose({
任务审批/任务终审/AI工单明细动作
-
+
-
-
- |
- 通过 |
+
+ |
+ 关闭(关闭当前场景弹窗) |
-
-
+ |
+
+ /
+
|
- 不通过 |
+ 打开上一条/下一条信息切换 |
-
+
- |
- 关闭(关闭当前场景弹窗) |
+
+
+ |
+ 通过 |
-
-
- /
-
+ |
+
|
- 打开上一条/下一条信息切换 |
+ 不通过 |
-
+
diff --git a/src/views/worksheet/content/Content.vue b/src/views/worksheet/content/Content.vue
index 16c386b..5fa27f4 100644
--- a/src/views/worksheet/content/Content.vue
+++ b/src/views/worksheet/content/Content.vue
@@ -202,6 +202,9 @@ const fullscreenStyles = computed(() => ({
// 切换全屏状态
function toggleFullScreen() {
isFullScreen.value = !isFullScreen.value
+ if(!isFullScreen.value){
+ imgbigshow.value=true
+ }
}
onUpdated(() => {
|