迁移电池复投管理模块
- 新增计划与生产电池复投管理 V2 页面 - 新增复投验证接口、旧路径路由和中英文文案 - 更新迁移任务列表并补充人工功能测试清单
This commit is contained in:
19
src/api/planning-production/rework-management.js
Normal file
19
src/api/planning-production/rework-management.js
Normal 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)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user