import request from '@/utils/request' // /officialInventory/coalBlendingList // 获取煤炭配比列表 export function getCoalBlendingList(query) { return request({ url: '/officialInventory/coalBlendingList', method: 'get', params: query }) } // /pendingInventory/addPending // 添加待入库数据 export function addPendingInventory(data) { return request({ url: '/pendingInventory/addPending', method: 'post', data }) }