From 2c41664fe896b6922d65b1a0e39b4a2acfe1a06f Mon Sep 17 00:00:00 2001 From: Esacpe <1113279529@qq.com> Date: Fri, 26 Sep 2025 16:55:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/aboutTable/FormMessage.vue | 3 - .../components/selectTtaningDialog.vue | 2 +- .../components/addPractitionerDialog.vue | 29 ++++-- .../practitioner/components/chooseCompany.vue | 91 +++++++++++++++++++ .../practitioner/index.vue | 1 - .../trainingManagement/trainer/index.vue | 3 +- .../unitInformation/index.vue | 20 ++-- 7 files changed, 123 insertions(+), 26 deletions(-) create mode 100644 src/views/securityManagement/personnelManagement/practitioner/components/chooseCompany.vue diff --git a/src/components/aboutTable/FormMessage.vue b/src/components/aboutTable/FormMessage.vue index 2610166..013210c 100644 --- a/src/components/aboutTable/FormMessage.vue +++ b/src/components/aboutTable/FormMessage.vue @@ -149,13 +149,10 @@ const handleNum = (val) => { watch(() => props.modelValue, (newVal) => { listQuery.value = newVal; //赋值 - console.log(newVal,'===newVal'); - }, { immediate: true, deep: true }); watch(() => listQuery.value, (newVal) => { emits('update:modelValue', newVal) - console.log(newVal,'===newVal111'); }, { immediate: true, deep: true }); defineExpose({ submit, reset }); diff --git a/src/views/securityManagement/personnelManagement/applicantPersonnel/components/selectTtaningDialog.vue b/src/views/securityManagement/personnelManagement/applicantPersonnel/components/selectTtaningDialog.vue index 69e29eb..af1508d 100644 --- a/src/views/securityManagement/personnelManagement/applicantPersonnel/components/selectTtaningDialog.vue +++ b/src/views/securityManagement/personnelManagement/applicantPersonnel/components/selectTtaningDialog.vue @@ -86,7 +86,7 @@ function open(row) { function getList () { pageData.tableConfiger.loading = true; - qcckPost({ }, "/mosty-base/baxx/dwgl/list").then((res) => { + qcckPost({ keyword : localStorage.getItem('idEntityCard') }, "/mosty-base/baxx/dwgl/list").then((res) => { let arr = res || [] pageData.tableData = arr.filter(item => item.type == '02') pageData.tableConfiger.loading = false; diff --git a/src/views/securityManagement/personnelManagement/practitioner/components/addPractitionerDialog.vue b/src/views/securityManagement/personnelManagement/practitioner/components/addPractitionerDialog.vue index 0577a4f..7f4c869 100644 --- a/src/views/securityManagement/personnelManagement/practitioner/components/addPractitionerDialog.vue +++ b/src/views/securityManagement/personnelManagement/practitioner/components/addPractitionerDialog.vue @@ -9,15 +9,21 @@