spring
17 小时以前 ce92cb3a3645ca473798698522f477c8c2eb2e7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import request from '@/utils/request'
 
// 耗材入库管理-查询入库记录列表
export const getConsumablesInRecordListPage = (params) => {
  return request({
    url: '/consumablesInRecord/listPage',
    method: 'get',
    params
  })
}
 
// 编辑耗材入库(仅用于台账编辑)
export const editStockInStock = (data) => {
  return request({
    url: '/consumablesInRecord/editStockInStock',
    method: 'post',
    data
  })
}
 
// 批量删除入库记录
export const batchDeleteConsumablesInRecords = (ids) => {
  return request({
    url: '/consumablesInRecord',
    method: 'delete',
    data: ids
  })
}