From ec3c0e8012bb8ffcfed43bf4dc552e1e6214c771 Mon Sep 17 00:00:00 2001 From: shj <1790240199@qq.com> Date: 星期二, 02 八月 2022 15:06:07 +0800 Subject: [PATCH] 对接 --- src/components/DailogSearchUser/index.vue | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/components/DailogSearchUser/index.vue b/src/components/DailogSearchUser/index.vue index 7bfe7f2..0db0657 100644 --- a/src/components/DailogSearchUser/index.vue +++ b/src/components/DailogSearchUser/index.vue @@ -149,7 +149,7 @@ }; // 右方点击添加后显示标签 const dynamicTags = ref(['']); - const handleClose = (tag: string) => { + const handleClose = (tag: any) => { dynamicTags.value.splice(dynamicTags.value.indexOf(tag), 1); radio1.value = ''; }; @@ -161,6 +161,7 @@ // 开启弹窗 const dialogVisible = ref(false); const openDailog = (type:any) => { + console.log(type) types.value=type dialogVisible.value = true; }; -- Gitblit v1.9.2