gaoluyang
2025-07-02 71fcb192074d72105b1668f6cf9b32a2e54838d8
src/api/warehouseManagement/index.js
@@ -36,7 +36,31 @@
// 审核入库
export function addOrEditCoalValue(query) {
    return request({
        url: '/basic/coalValue/addOrEditCoalValue',
        url: '/pendingInventory/addOrEditCoalValue',
        method: 'post',
        data: query
    })
}
// 根据id查询煤质方案查询
export function coalPlanById(query) {
    return request({
        url: '/coalPlan/coalPlanById',
        method: 'get',
        params: query
    })
}
// 提交合并
export function merge(query) {
    return request({
        url: '/officialInventory/merge',
        method: 'post',
        data: query
    })
}
// 正式库存编辑
export function editOfficial(query) {
    return request({
        url: '/officialInventory/editOfficial',
        method: 'post',
        data: query
    })