diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/fkDialog.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/fkDialog.vue
index 8add1c6..84ca600 100644
--- a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/fkDialog.vue
+++ b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/fkDialog.vue
@@ -55,6 +55,7 @@ const formData = ref([
{ label: "常控不尿检理由", prop: "ckbnjly", type: "textarea",width:'100%' },
{ label: "常控处置反馈补充信息", prop: "ckczbcxx", type: "textarea",width:'100%' },
])
+
const rules = reactive({
mbzt: [{ required: true, message: "请选择发现目标状态", trigger: "change" }],
fxmbzedw: [{ required: true, message: "请选择发现目标责任单位", trigger: "change" }],
diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem copy.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem copy.vue
deleted file mode 100644
index 9474f68..0000000
--- a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem copy.vue
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
- {{ changetText(props.item.yjJb) }}
-
-
-
-
-
- {}">全息档案
-
-
-
-
-
{{ props.item.yjRyxm }} {{ props.item.yjbq }}
-
性别:{{ IdCard(props.item.yjRysfzh , 2 )}}
-
身份证号:{{ props.item.yjRysfzh }}
-
出生日期:{{ IdCard(props.item.yjRysfzh , 1 )}}
-
相似度:{{ props.item.xsd * 100 }}%
-
预警次数:{{ props.item.yjCs }} 次
-
- 签收
- {{ props.item.sffk ? '查看反馈':'反馈' }}
-
-
-
-
预警级别:{{ props.item.yjJb }}
-
预警标题:{{ props.item.yjBt }}
-
预警内容:{{ props.item.yjNr }}
-
预警地址:{{ props.item.yjDz }}
-
预警时间:{{ props.item.yjSj }}
-
签收时间:{{ props.item.qssj }}
-
反馈时间:{{ props.item.fksj }}
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem.vue
index 40dca46..a924dcb 100644
--- a/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem.vue
+++ b/src/views/backOfficeSystem/IntelligentControl/warningControl/components/yjItem.vue
@@ -20,9 +20,9 @@
相似度:{{ props.item.xsd * 100 }}%
预警次数:{{ props.item.yjCs }} 次
- 签收
- 反馈
- 查看反馈
+ 签收
+ 反馈
+ 查看反馈
@@ -56,7 +56,7 @@ import emitter from "@/utils/eventBus.js";
import { qcckGet, qcckPost } from "@/api/qcckApi.js";
import * as MOSTY from "@/components/MyComponents/index";
import { IdCard } from '@/utils/validate.js'
-import { defineProps ,ref, reactive,getCurrentInstance } from "vue";
+import { defineProps ,ref, reactive,getCurrentInstance, onMounted } from "vue";
const { proxy } = getCurrentInstance();
const props = defineProps({
item: {
@@ -72,7 +72,7 @@ const props = defineProps({
default: ""
}
});
-
+const deptLevel = ref(null)
const buttonRef = ref()
const popoverRef = ref()
const elRowForm = ref()
@@ -81,6 +81,9 @@ const chooseRow = ref({})
const rules = reactive({
fknr: [{ required: true, message: "请输入反馈内容", trigger: "blur" }],
})
+onMounted(() => {
+ deptLevel.value = localStorage.getItem("deptId") ? JSON.parse(localStorage.getItem("deptId"))[0].deptLevel : null;
+});
// 处理签收
diff --git a/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue b/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue
index 7aa0c27..93bce11 100644
--- a/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue
+++ b/src/views/backOfficeSystem/IntelligentControl/warningControl/index.vue
@@ -24,7 +24,8 @@