diff --git a/src/layout/components/Header/RecycleModal.vue b/src/layout/components/Header/RecycleModal.vue
index 8f9e985..4afda80 100644
--- a/src/layout/components/Header/RecycleModal.vue
+++ b/src/layout/components/Header/RecycleModal.vue
@@ -278,7 +278,7 @@ function setBatch(value) {
batch.value = value;
}
if (value === false) {
- // selectIds.value = []
+ selectIds.value = []
selectedApproveItems.value.forEach((item) => (item.checked = false));
selectedApproveItems.value.length = 0;
}
@@ -292,12 +292,12 @@ const checked = ref(false)
const notPassModalRef = ref(null)
const showActions = computed(() => {
+ console.log('selectedApproveItems',selectedApproveItems)
return selectedApproveItems.value.length > 0 && batch;
});
function onCheckChange(checked: any, item: any) {
- debugger
item.checked = checked
const index = selectedApproveItems.value.indexOf(item);
@@ -431,7 +431,7 @@ function refreshHandler(){
移除可疑文件夹
-
+
批量审批
diff --git a/src/views/task/content/Content.vue b/src/views/task/content/Content.vue
index 651b84c..1f67f79 100644
--- a/src/views/task/content/Content.vue
+++ b/src/views/task/content/Content.vue
@@ -78,7 +78,7 @@ const fullscreenStyles = computed
(() => ({
position: isFullScreen.value ? 'fixed' : '',
top: isFullScreen.value ? '0' : '',
left: isFullScreen.value ? '0' : '',
- zIndex: isFullScreen.value ? '9999' : '',
+ zIndex: isFullScreen.value ? '100' : '',
}))
onMounted(() => {
diff --git a/src/views/worksheet/content/Content.vue b/src/views/worksheet/content/Content.vue
index 904a9c1..bee4397 100644
--- a/src/views/worksheet/content/Content.vue
+++ b/src/views/worksheet/content/Content.vue
@@ -172,7 +172,7 @@ const fullscreenStyles = computed(() => ({
'position': isFullScreen.value ? 'fixed' : '',
'top': isFullScreen.value ? '0' : '',
'left': isFullScreen.value ? '0' : '',
- 'zIndex': isFullScreen.value ? '9999' : '',
+ 'zIndex': isFullScreen.value ? '100' : '',
}));
// 切换全屏状态