From 4260da6a8b15cc3fd8dfb254ba3a078b1d7c596a Mon Sep 17 00:00:00 2001 From: hcong <1050828145@qq.com> Date: 星期二, 26 十一月 2024 14:28:05 +0800 Subject: [PATCH] 1. socket生命周期监听、断线重连、心跳检测 2. socket消息校验、生成、解析 3. 观察者模式分发消息 --- src/composables/formConfirm.js | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/composables/formConfirm.js b/src/composables/formConfirm.js index dc295d5..e1eafd1 100644 --- a/src/composables/formConfirm.js +++ b/src/composables/formConfirm.js @@ -1,4 +1,4 @@ -import { defineProps, onActivated, onDeactivated, ref, watch } from 'vue'; +import { defineProps, onActivated, onDeactivated, reactive, ref, watch } from 'vue'; import { useCloned } from '@vueuse/core'; import { useMessageBoxTip, useMessageBox } from './messageBox'; @@ -13,7 +13,7 @@ }, reset = { do: () => {} - } + }, }) { if (!submit.title) submit.title = '鎻愪氦'; if (!submit.msg) submit.msg = '纭鏄惁鎻愪氦锛�'; @@ -92,9 +92,10 @@ }; // 鎻愪氦琛ㄥ崟 - const onSubmit = function () { - formRef.value.validate((valid) => { + const onSubmit = function (messageBox = true) { + formRef.value.validate(async (valid) => { if (valid) { + if (messageBox) { useMessageBoxTip({ confirmMsg: submit.msg, confirmTitle: submit.title, @@ -104,6 +105,10 @@ return res; } }); + } else { + await submit.do(); + submited(); + } } }); }; -- Gitblit v1.9.3