From 8e31016ad07976e7bbb1bc74cce47bcf8aea96ae Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 21 Aug 2023 18:34:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=95=87=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E4=B8=8E=E9=95=87=E5=85=AC=E5=8F=B8=E7=AD=BE=E7=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/company/dialog_index.vue | 28 ++++++++++++++++++++++++++-- src/views/company/index.vue | 21 ++++++++++++++++----- 2 files changed, 42 insertions(+), 7 deletions(-) diff --git a/src/views/company/dialog_index.vue b/src/views/company/dialog_index.vue index 84b1fbf..6f474e4 100644 --- a/src/views/company/dialog_index.vue +++ b/src/views/company/dialog_index.vue @@ -11,12 +11,26 @@ /> - + + + 查询 @@ -54,6 +68,16 @@ const props = defineProps({ type: Number, default: 0, }, + companyTypeList: { + type: Array, + default: () => { + return []; + }, + }, +}); + +const typeList = props.companyTypeList.filter((item: any) => { + return item.id == 30 || item.id == 16; }); // 查询条件 diff --git a/src/views/company/index.vue b/src/views/company/index.vue index e8fcb99..a3176bc 100644 --- a/src/views/company/index.vue +++ b/src/views/company/index.vue @@ -275,14 +275,14 @@ - - + @@ -356,8 +356,14 @@ >返回

+ + + -

重要提醒

@@ -405,6 +411,11 @@ import { dictContractTypeList } from "@/utils/dict.ts"; import DialogIndex from "./dialog_index.vue"; const showCompany = ref(false); +const customEvent = (e: any) => { + contractFormData.value.party_a = e.id; + contractFormData.value.party_a_name = e.company_name; + showCompany.value = false; +}; const userStore = useUserStore(); console.log(userStore.userInfo.company_id);