From bbf935c44b77eb0997f9332cd0e7f820f2bd2804 Mon Sep 17 00:00:00 2001
From: zhaojiale <631455805@qq.com>
Date: Wed, 03 Aug 2022 15:41:37 +0800
Subject: [PATCH] 事故快报除图片外完成
---
src/components/DailogSearchUser/index.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/DailogSearchUser/index.vue b/src/components/DailogSearchUser/index.vue
index dd4eb9f..0db0657 100644
--- a/src/components/DailogSearchUser/index.vue
+++ b/src/components/DailogSearchUser/index.vue
@@ -119,7 +119,6 @@
//左边树形部分点击获取回调
const names = ref<any>();
const handleNodeClick = (data: Tree) => {
- console.log(data);
goalManagementApi()
.getManName(data.depId)
.then((res) => {
@@ -150,7 +149,7 @@
};
// 右方点击添加后显示标签
const dynamicTags = ref(['']);
- const handleClose = (tag: string) => {
+ const handleClose = (tag: any) => {
dynamicTags.value.splice(dynamicTags.value.indexOf(tag), 1);
radio1.value = '';
};
@@ -162,6 +161,7 @@
// 开启弹窗
const dialogVisible = ref(false);
const openDailog = (type:any) => {
+ console.log(type)
types.value=type
dialogVisible.value = true;
};
--
Gitblit v1.9.2