src/composables/messageBox.js
@@ -15,7 +15,7 @@
      let msg = `已${doneMsg}`
      if (typeof onConfirm === 'function') {
        const str = await onConfirm();
        if (str && str != '') {
        if (typeof str === 'string' && str != '') {
          msg = `已${doneMsg}, ${str}`
        }
      }