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

65 lines
1.2 KiB

  1. import request from '@/utils/request'
  2. // 查询麻精药发放记录列表
  3. export function list(query) {
  4. return request({
  5. url: '/system/business/mjyFfjl/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 解锁
  11. export function js(data) {
  12. return request({
  13. url: '/system/business/mjyFfjl/js',
  14. method: 'post',
  15. data: data
  16. })
  17. }
  18. // 锁定
  19. export function sd(data) {
  20. return request({
  21. url: '/system/business/mjyFfjl/sd',
  22. method: 'post',
  23. data: data
  24. })
  25. }
  26. // 锁定
  27. export function plsd(data) {
  28. return request({
  29. url: '/system/business/mjyFfjl/plsd',
  30. method: 'post',
  31. data: data
  32. })
  33. }
  34. //归档
  35. export function gd(data) {
  36. return request({
  37. url: '/system/business/mjyFfjl/gd',
  38. method: 'post',
  39. data: data
  40. })
  41. }
  42. //解档
  43. export function jd(data) {
  44. return request({
  45. url: '/system/business/mjyFfjl/jd',
  46. method: 'post',
  47. data: data
  48. })
  49. }
  50. //借阅
  51. export function jy(data) {
  52. return request({
  53. url: '/system/business/mjyFfjl/jy',
  54. method: 'post',
  55. data: data
  56. })
  57. }
  58. //归档
  59. export function plgd(data) {
  60. return request({
  61. url: '/system/business/mjyFfjl/plgd',
  62. method: 'post',
  63. data: data
  64. })
  65. }