From 7e59f825fc32d47f246f82612163371fd4eacd80 Mon Sep 17 00:00:00 2001 From: sheng <905537351@qq.com> Date: Thu, 25 Jun 2026 15:46:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=94=B5=E6=B1=A0=E5=B7=A5?= =?UTF-8?q?=E5=BA=8F=E8=B7=B3=E8=BD=AC=E6=88=90=E5=8A=9F=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/en.json | 1 + src/locales/zh-chs.json | 1 + .../production-monitoring/process-execution/index.vue | 4 ++++ 3 files changed, 6 insertions(+) diff --git a/src/locales/en.json b/src/locales/en.json index 036e8420..849195e4 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -2944,6 +2944,7 @@ "no": "No", "verify_data": "Verify Data", "change_process": "Change Process", + "change_process_success": "Process changed successfully", "multi_battery_input": "Multi-Battery Input", "input_rule": "Rule: One barcode per line", "please_enter_battery_id_data": "Enter battery barcode data", diff --git a/src/locales/zh-chs.json b/src/locales/zh-chs.json index 7ecf17d1..47083633 100644 --- a/src/locales/zh-chs.json +++ b/src/locales/zh-chs.json @@ -2944,6 +2944,7 @@ "no": "否", "verify_data": "验证数据", "change_process": "更改工序", + "change_process_success": "工序跳转成功", "multi_battery_input": "多电池条码输入", "input_rule": "输入规则:每个电池条码占一行输入", "please_enter_battery_id_data": "请输入电池条码数据", diff --git a/src/views/planning-production/production-monitoring/process-execution/index.vue b/src/views/planning-production/production-monitoring/process-execution/index.vue index a4aabf1d..4678c651 100644 --- a/src/views/planning-production/production-monitoring/process-execution/index.vue +++ b/src/views/planning-production/production-monitoring/process-execution/index.vue @@ -210,6 +210,10 @@ export default { .then(res => { const data = this.normalizeProcessPayload(res) this.tableData = this.normalizeProcessRows(data) + this.$alert(this.$t(this.key('change_process_success')), this.$t(this.key('prompt')), { + type: 'success', + confirmButtonText: this.$t(this.key('confirm')) + }) }) .finally(() => { this.loading = false