华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
677 B

import request from '@/utils/request'
// 查询试剂库存列表
export function sjkc_list(query) {
return request({
url: '/system/business/sjkc/list',
method: 'get',
params: query
})
}
// 查询试剂库存详情
export function sjkc_info(query) {
return request({
url: '/system/business/sjkc/info',
method: 'get',
params: query
})
}
// 保存试剂库存
export function sjkc_save(data) {
return request({
url: '/system/business/sjkc/save',
method: 'post',
data: data
})
}
// 修改库存
export function sjkc_xgkc(data) {
return request({
url: '/system/business/sjkc/xgkc',
method: 'post',
data: data
})
}