迁移电池复投管理模块
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

- 新增计划与生产电池复投管理 V2 页面

- 新增复投验证接口、旧路径路由和中英文文案

- 更新迁移任务列表并补充人工功能测试清单
This commit is contained in:
sheng
2026-06-22 16:26:05 +08:00
parent 9863bf1113
commit e3fd31e33d
7 changed files with 331 additions and 3 deletions

View File

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