feat: migrate process execution module
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

- add V2 process execution page for planning production monitoring

- add process execution API, route, and i18n entries

- update migration task list status for process execution
This commit is contained in:
sheng
2026-06-22 15:07:38 +08:00
parent 45c2ea6e63
commit 8ef087676f
6 changed files with 318 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
import { request } from '@/api/_service'
const BASE = 'planning_production/produce/change_battery_process/'
function apiParams (method, data = {}) {
return {
method,
platform: 'background',
...data
}
}
export function verifyBatteryProcessInfo (data) {
return request({
url: BASE + 'verify',
method: 'get',
params: apiParams('planning_production_produce_change_battery_process_verify', data)
})
}
export function changeBatteryProcess (data) {
return request({
url: BASE + 'change',
method: 'get',
params: apiParams('planning_production_produce_change_battery_process_change', data)
})
}