From 2326752b5d3b410e8d7a20d9f87c788b4c052401 Mon Sep 17 00:00:00 2001 From: zhouxiaofeng <2946471396@qq.com> Date: Mon, 29 Jun 2026 15:56:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=90=8C=E6=AD=A3=E6=96=87=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=AF=A6=E6=83=85=E4=B8=8D=E5=8F=AF=E6=89=93=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ContractPartyPlaceholderModal.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/views/contract/launch/components/ContractPartyPlaceholderModal.vue b/src/views/contract/launch/components/ContractPartyPlaceholderModal.vue index 34abafa..7386a28 100644 --- a/src/views/contract/launch/components/ContractPartyPlaceholderModal.vue +++ b/src/views/contract/launch/components/ContractPartyPlaceholderModal.vue @@ -343,9 +343,9 @@
合同正文
{{ contractBodyDisplayText }} @@ -1782,7 +1782,7 @@ function mapPartnerToParty(raw = {}, roleKey, companyName) { ...createEmptyParty(roleCode), partnerId: raw.customerSysid || null, customerSysid: raw.customerSysid || null, - subjectCode: raw.orgId == null ? "" : String(raw.orgId), + subjectCode: "", oppositeId: raw.oppositeId || "", companyName: raw.customerNameC || companyName || "", companyType: getRelativeTypeLabel(raw.relativeType), @@ -2010,6 +2010,13 @@ function openBodyConfigModal() { ); } +function handleBodyEntryClick() { + if (isViewMode.value) { + return; + } + openBodyConfigModal(); +} + function handleBodyConfigSave(payload = {}) { creationMode.value = payload.creationMode || "template"; templateKey.value = payload.templateKey || "";