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

135 lines
2.6 KiB

  1. import request from '@/utils/request'
  2. //列表
  3. export function studyFormPlan_list(query) {
  4. return request({
  5. url: '/system/business/studyFormPlan/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. //稽查轨迹
  11. export function studyFormPlan_jcgj(query) {
  12. return request({
  13. url: '/system/business/studyFormPlan/jcgjList',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. //签名信息
  19. export function studyFormPlan_qmxx(query) {
  20. return request({
  21. url: '/system/business/studyFormPlan/qmxxList',
  22. method: 'get',
  23. params: query
  24. })
  25. }
  26. //详情
  27. export function studyFormPlan_info(query) {
  28. return request({
  29. url: '/system/business/studyFormPlan/info',
  30. method: 'get',
  31. params: query
  32. })
  33. }
  34. //导出
  35. export function studyFormPlan_exportDetail(query) {
  36. return request({
  37. url: '/system/business/studyFormPlan/exportDetail',
  38. method: 'get',
  39. params: query
  40. })
  41. }
  42. //更换归属人
  43. export function studyFormPlan_ghgsr(data) {
  44. return request({
  45. url: '/system/business/studyFormPlan/ghgsr',
  46. method: 'post',
  47. data: data
  48. })
  49. }
  50. //保存
  51. export function studyFormPlan_bc(data) {
  52. return request({
  53. url: '/system/business/studyFormPlan/bc',
  54. method: 'post',
  55. data: data
  56. })
  57. }
  58. //仅保存
  59. export function studyFormPlan_bcOnly(data) {
  60. return request({
  61. url: '/system/business/studyFormPlan/bcOnly',
  62. method: 'post',
  63. data: data
  64. })
  65. }
  66. //提交
  67. export function studyFormPlan_tj(data) {
  68. return request({
  69. url: '/system/business/studyFormPlan/tj',
  70. method: 'post',
  71. data: data
  72. })
  73. }
  74. //复核通过
  75. export function studyFormPlan_fhtg(data) {
  76. return request({
  77. url: '/system/business/studyFormPlan/fhtg',
  78. method: 'post',
  79. data: data
  80. })
  81. }
  82. //复核拒绝
  83. export function studyFormPlan_fhjj(data) {
  84. return request({
  85. url: '/system/business/studyFormPlan/fhjj',
  86. method: 'post',
  87. data: data
  88. })
  89. }
  90. //审阅
  91. export function studyFormPlan_sy(data) {
  92. return request({
  93. url: '/system/business/studyFormPlan/sy',
  94. method: 'post',
  95. data: data
  96. })
  97. }
  98. //保存字段勾选记录
  99. export function studyFormPlan_updateZdgxjl(data) {
  100. return request({
  101. url: '/system/business/studyFormPlan/updateZdgxjl',
  102. method: 'post',
  103. data: data
  104. })
  105. }
  106. //保存复核意见
  107. export function studyFormPlan_updateFhyjjl(data) {
  108. return request({
  109. url: '/system/business/studyFormPlan/updateFhyjjl',
  110. method: 'post',
  111. data: data
  112. })
  113. }
  114. //保存表单内容
  115. export function studyFormPlan_updateBdnr(data) {
  116. return request({
  117. url: '/system/business/studyFormPlan/updateBdnr',
  118. method: 'post',
  119. data: data
  120. })
  121. }