1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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
| })
| }
|
|