From 8977783adbbc842f523109d95273e345fee547dc Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 07 十一月 2025 11:19:27 +0800
Subject: [PATCH] feat: 接口
---
src/views/ProtocolManage/EditTemplate.vue | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/views/ProtocolManage/EditTemplate.vue b/src/views/ProtocolManage/EditTemplate.vue
index 16a8129..691ff38 100644
--- a/src/views/ProtocolManage/EditTemplate.vue
+++ b/src/views/ProtocolManage/EditTemplate.vue
@@ -204,6 +204,8 @@
enterpriseId: '',
isAutoSign: false,
autoSignPowerAttorneyUrl: [] as UploadUserFile[],
+
+ customContents: [] as string[],
},
closeAfterConfirm: false,
});
@@ -224,6 +226,8 @@
isAutoSign: detail.isAutoSign ?? false,
autoSignPowerAttorneyUrl: convertApi2FormUrlOnlyOne(detail.autoSignPowerAttorneyUrl),
enterpriseId: enterpriseId,
+
+ customContents: detail.customContents.map((x) => x.name),
});
} else {
handleAdd();
@@ -253,6 +257,7 @@
} as TemplateEditDataItem)
)
),
+ customContents: editForm.customContents,
};
if (editForm.access === EnumElectronSignAccess.BestSign) {
params.isAutoSign = editForm.isAutoSign;
--
Gitblit v1.9.1