From 4267612a5e4447a35e94216765fae90221ba86fa Mon Sep 17 00:00:00 2001 From: KindSeven <2845382437@qq.com> Date: Tue, 17 Sep 2024 18:27:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E4=BA=86=E5=B7=A5?= =?UTF-8?q?=E5=8D=95=E7=8A=B6=E6=80=81=E6=97=B6=E9=97=B4=E5=92=8C=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E7=9A=84=E6=98=BE=E7=A4=BAbug=EF=BC=8C=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E4=BA=86=E5=88=9B=E5=A7=8B=E4=BA=BA=EF=BC=8C=E5=BD=95?= =?UTF-8?q?=E9=9F=B3=E4=BF=A1=E6=81=AF=E6=94=B9=E4=B8=BA=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=92=AD=E6=94=BE=E5=BD=95=E9=9F=B3=E5=92=8C?= =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E5=BD=95=E9=9F=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/voice/index.vue | 6 +- src/views/home/index.vue | 2 +- .../task-management/all-work-order/index.vue | 2 +- .../task-management/components/WorkDialog.vue | 189 +++++++++++------- 4 files changed, 127 insertions(+), 72 deletions(-) diff --git a/src/components/voice/index.vue b/src/components/voice/index.vue index 74850d3..e908a15 100644 --- a/src/components/voice/index.vue +++ b/src/components/voice/index.vue @@ -3,6 +3,10 @@ const dialogVisible = ref(false); const open = (row) => { dialogVisible.value = true; }; +// console.log(dialogVisible.value); +defineProps({ + title:String +}) defineExpose({ open, }); @@ -10,7 +14,7 @@ defineExpose({