From ced13f44edc4813c8ed03b9ccc9abd2ff0541cff Mon Sep 17 00:00:00 2001 From: weizong song Date: Sun, 4 Jan 2026 14:27:28 +0800 Subject: [PATCH] up --- src/components/ContractSignField.vue | 72 ++++++++++++++-------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/src/components/ContractSignField.vue b/src/components/ContractSignField.vue index 2af40f5..6ac5078 100644 --- a/src/components/ContractSignField.vue +++ b/src/components/ContractSignField.vue @@ -37,13 +37,13 @@ > - - - + + + - + @@ -52,14 +52,14 @@ - - - + + + - - - + + + @@ -81,17 +81,17 @@ - + - - - - - - + + + + + + @@ -104,30 +104,30 @@ - - + + - - - + + + - - + type="date" + value-format="yyyy-MM-dd" + style="width: 100%" + /> + @@ -483,10 +483,10 @@ export default { await this.loadUserList(); await this.loadDepartmentList(); // 优先尝试加载已有合同(通过合同ID或flowId) - const contractExists = await this.loadExistingContract(); + const contractExists = await this.loadExistingContract(); // 如果找不到已有合同,且提供了flowId,则从流程数据预填 if (!contractExists && this.flowId) { - this.loadFlowDataAndPrefill(); + this.loadFlowDataAndPrefill(); } }, onDialogClose() { @@ -555,7 +555,7 @@ export default { // 如果通过ID加载失败,且提供了flowId,尝试通过flowId加载 if (!contractData && this.flowId) { - const res = await getContractByFlowId(this.flowId); + const res = await getContractByFlowId(this.flowId); contractData = res?.data || res; }