华西海圻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.

36 lines
677 B

  1. import request from '@/utils/request'
  2. // 查询试剂库存列表
  3. export function sjkc_list(query) {
  4. return request({
  5. url: '/system/business/sjkc/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询试剂库存详情
  11. export function sjkc_info(query) {
  12. return request({
  13. url: '/system/business/sjkc/info',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. // 保存试剂库存
  19. export function sjkc_save(data) {
  20. return request({
  21. url: '/system/business/sjkc/save',
  22. method: 'post',
  23. data: data
  24. })
  25. }
  26. // 修改库存
  27. export function sjkc_xgkc(data) {
  28. return request({
  29. url: '/system/business/sjkc/xgkc',
  30. method: 'post',
  31. data: data
  32. })
  33. }