diff --git a/src/components/supervision_check_item/index.vue b/src/components/supervision_check_item/index.vue
index a0a2bda..ebc42fc 100644
--- a/src/components/supervision_check_item/index.vue
+++ b/src/components/supervision_check_item/index.vue
@@ -19,21 +19,36 @@
-
+
-
-
+
+
+
+ 查看
+
+
+
+
+
+ 查看
+
+
-
@@ -46,7 +61,8 @@ import { useDictData } from '@/hooks/useDictOptions'
const props = defineProps({
project_id: Number,
- node_type: Number
+ node_type: Number,
+ multipleChoice: Boolean
})
// 查询条件
// 查询条件
@@ -58,13 +74,16 @@ const queryParams = reactive({
})
const { dictData } = useDictData('check_item_node_type')
const multipleSelection = ref([])
+const dialogTableVisible = ref(false)
+const tit = ref('')
+const htmlContent = ref('')
// 选中数据
const emits = defineEmits(["customEvent"]);
// 选中数据子父传递
const handleCurrentChange = (value: any) => {
- if (!props.node_type) return
+ if (props.multipleChoice) return
emits("customEvent", value);
};
diff --git a/src/views/data_report_department/index.vue b/src/views/data_report_department/index.vue
index 1ccf02e..6578ff3 100644
--- a/src/views/data_report_department/index.vue
+++ b/src/views/data_report_department/index.vue
@@ -7,10 +7,10 @@