From c94535b792e9df0d3bbeffa10f427624c7c10ee4 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期四, 29 五月 2025 13:54:21 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- culture/src/components/confirm-storage-dialog/index.vue | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/culture/src/components/confirm-storage-dialog/index.vue b/culture/src/components/confirm-storage-dialog/index.vue index bff6741..f174fea 100644 --- a/culture/src/components/confirm-storage-dialog/index.vue +++ b/culture/src/components/confirm-storage-dialog/index.vue @@ -3,6 +3,7 @@ :visible.sync="visible" title="签字确认" width="520px" + @open="handleOpen" :close-on-click-modal="false" custom-class="record-detail-dialog" @close="handleClose" @@ -65,6 +66,10 @@ type: String, default: "", }, + handleSignature: { + type: String, + default:"", + } }, data() { return { @@ -78,6 +83,9 @@ }; }, methods: { + handleOpen() { + this.form.signature = this.handleSignature; + }, handleClose() { this.$emit("update:visible", false); }, -- Gitblit v1.7.1