From a73e0a6822f46069926e0ec4699c721c76dc19ca Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Tue, 21 Apr 2026 19:49:09 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260421-=E9=80=9A=E7=94=A8=E5=8F=91?= =?UTF-8?q?=E8=B5=B7=E6=B5=81=E7=A8=8B=E7=BB=84=E4=BB=B6=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../semri/process/FlowScheduleStartModal.vue | 28 +++++++++---------- .../bg/bgpartymatter/BgPartymatterList.vue | 4 +-- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/components/semri/process/FlowScheduleStartModal.vue b/src/components/semri/process/FlowScheduleStartModal.vue index 39ccb53..cd24a72 100644 --- a/src/components/semri/process/FlowScheduleStartModal.vue +++ b/src/components/semri/process/FlowScheduleStartModal.vue @@ -5,42 +5,42 @@ :visible="visible" @ok="handleOk" @cancel="handleCancel" - cancelText="Cancel" + cancelText="取消" > - + - Immediate - Recurring + 立即发起 + 重复发起 @@ -69,7 +69,7 @@ const emit = defineEmits(['confirm']); const { createMessage } = useMessage(); - const title = ref('Start Process'); + const title = ref('发起流程'); const visible = ref(false); const contextData = ref>({}); const formData = reactive({ @@ -88,7 +88,7 @@ function open(data: ModalPayload = {}) { resetForm(); - title.value = data.title || 'Start Process'; + title.value = data.title || '发起流程'; contextData.value = data.payload || {}; visible.value = true; } diff --git a/src/views/bg/bgpartymatter/BgPartymatterList.vue b/src/views/bg/bgpartymatter/BgPartymatterList.vue index 3d01cf6..0d4e187 100644 --- a/src/views/bg/bgpartymatter/BgPartymatterList.vue +++ b/src/views/bg/bgpartymatter/BgPartymatterList.vue @@ -225,7 +225,7 @@ function handleProcess(record) { flowScheduleModalRef.value?.open({ - title: 'Start Flow', + title: '发起流程', payload: { record }, }); } @@ -256,7 +256,7 @@ }; await startProcessSchedules(params); - createMessage.success('流程发起成功'); + // createMessage.success('流程发起成功'); handleSuccess(); }