董国庆
2025-05-29 c94535b792e9df0d3bbeffa10f427624c7c10ee4
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);
    },