From 362adc4b88406490436feaa53a471bb6606e00d0 Mon Sep 17 00:00:00 2001 From: qiuhongwu Date: Thu, 22 Feb 2024 17:06:48 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E4=BF=A1=E6=81=AF=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E9=A1=B5=20=E4=B8=9A=E5=8A=A1=E5=91=98=E6=9B=BF?= =?UTF-8?q?=E6=8D=A2=E8=BF=9C=E7=A8=8B=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/heli/projectorder/detail.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mes-ui/mes-ui-admin-vue3/src/views/heli/projectorder/detail.vue b/mes-ui/mes-ui-admin-vue3/src/views/heli/projectorder/detail.vue index 117b088e..4a130d60 100644 --- a/mes-ui/mes-ui-admin-vue3/src/views/heli/projectorder/detail.vue +++ b/mes-ui/mes-ui-admin-vue3/src/views/heli/projectorder/detail.vue @@ -82,9 +82,10 @@ - + + @@ -460,6 +461,7 @@ import download from '@/utils/download' import { useUserStore } from '@/store/modules/user' import { getUserProfile } from '@/api/system/user/profile' import { getOperateLogPage } from '@/api/system/operatelog' +import UserSelect from '../hlvuestyle/userSelect.vue' import CompositionSelect from "@/views/heli/hlvuestyle/compositionSelect.vue"; const { t } = useI18n() // 国际化 @@ -948,6 +950,9 @@ onMounted(() => { const handleSelected = (currentIndex: number,newValue: any) => { formData.value.projectOrderSubs[currentIndex].compositionId = newValue?.id } +const handleSelectedUser = (newValue: any) => { + formData.value.businessMan = newValue?.id +}