From a63579a26e93dcd4a4f3ef25f84a90dcf2f665aa Mon Sep 17 00:00:00 2001
From: zhaojiale <631455805@qq.com>
Date: Mon, 01 Aug 2022 18:22:04 +0800
Subject: [PATCH] 事故快报中修改事故部门只显示id的问题
---
src/views/goalManagement/targetDecompositionYear/component/DailogAdd.vue | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/views/goalManagement/targetDecompositionYear/component/DailogAdd.vue b/src/views/goalManagement/targetDecompositionYear/component/DailogAdd.vue
index 1c862ac..d5c2080 100644
--- a/src/views/goalManagement/targetDecompositionYear/component/DailogAdd.vue
+++ b/src/views/goalManagement/targetDecompositionYear/component/DailogAdd.vue
@@ -138,13 +138,12 @@
value:"depId"
};
onMounted(() => {
-
+ department()
});
const disabled=ref(false)
// 开启弹窗
const dialogVisible = ref(false);
const openDailog = (title:string,data:any) => {
- department();
if(title=='查看'){
disabled.value=true
form.value=data
@@ -174,7 +173,7 @@
const nameC=ref()
const onUser = (e: any) => {
form.value.commitPersonId = e.uid;
- nameC.value=e.realName
+ nameC.value = e.realName
};
return {
disabled,
--
Gitblit v1.9.2