修复电池工序跳转成功提示
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

This commit is contained in:
sheng
2026-06-25 15:46:10 +08:00
parent a79db56124
commit 7e59f825fc
3 changed files with 6 additions and 0 deletions

View File

@@ -2944,6 +2944,7 @@
"no": "No", "no": "No",
"verify_data": "Verify Data", "verify_data": "Verify Data",
"change_process": "Change Process", "change_process": "Change Process",
"change_process_success": "Process changed successfully",
"multi_battery_input": "Multi-Battery Input", "multi_battery_input": "Multi-Battery Input",
"input_rule": "Rule: One barcode per line", "input_rule": "Rule: One barcode per line",
"please_enter_battery_id_data": "Enter battery barcode data", "please_enter_battery_id_data": "Enter battery barcode data",

View File

@@ -2944,6 +2944,7 @@
"no": "否", "no": "否",
"verify_data": "验证数据", "verify_data": "验证数据",
"change_process": "更改工序", "change_process": "更改工序",
"change_process_success": "工序跳转成功",
"multi_battery_input": "多电池条码输入", "multi_battery_input": "多电池条码输入",
"input_rule": "输入规则:每个电池条码占一行输入", "input_rule": "输入规则:每个电池条码占一行输入",
"please_enter_battery_id_data": "请输入电池条码数据", "please_enter_battery_id_data": "请输入电池条码数据",

View File

@@ -210,6 +210,10 @@ export default {
.then(res => { .then(res => {
const data = this.normalizeProcessPayload(res) const data = this.normalizeProcessPayload(res)
this.tableData = this.normalizeProcessRows(data) 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(() => { .finally(() => {
this.loading = false this.loading = false