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

166 lines
3.2 KiB

  1. import request from '@/utils/request'
  2. //列表
  3. export function studyFormApply_list(query) {
  4. return request({
  5. url: '/system/business/studyFormApply/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. //稽查轨迹
  11. export function studyFormApply_jcgj(query) {
  12. return request({
  13. url: '/system/business/studyFormApply/jcgjList',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. //签名信息
  19. export function studyFormApply_qmxx(query) {
  20. return request({
  21. url: '/system/business/studyFormApply/qmxxList',
  22. method: 'get',
  23. params: query
  24. })
  25. }
  26. //详情
  27. export function studyFormApply_info(query) {
  28. return request({
  29. url: '/system/business/studyFormApply/info',
  30. method: 'get',
  31. params: query
  32. })
  33. }
  34. //导出
  35. export function studyFormApply_exportDetail(query) {
  36. return request({
  37. url: '/system/business/studyFormApply/exportDetail',
  38. method: 'get',
  39. params: query
  40. })
  41. }
  42. //加签
  43. export function studyFormApply_jq(data) {
  44. return request({
  45. url: '/system/business/studyFormApply/jq',
  46. method: 'post',
  47. data: data
  48. })
  49. }
  50. //废止
  51. export function studyFormApply_fz(data) {
  52. return request({
  53. url: '/system/business/studyFormApply/fz',
  54. method: 'post',
  55. data: data
  56. })
  57. }
  58. //确认废止
  59. export function studyFormApply_qrfz(data) {
  60. return request({
  61. url: '/system/business/studyFormApply/qrfz',
  62. method: 'post',
  63. data: data
  64. })
  65. }
  66. //更换归属人
  67. export function studyFormApply_ghgsr(data) {
  68. return request({
  69. url: '/system/business/studyFormApply/ghgsr',
  70. method: 'post',
  71. data: data
  72. })
  73. }
  74. //保存
  75. export function studyFormApply_bc(data) {
  76. return request({
  77. url: '/system/business/studyFormApply/bc',
  78. method: 'post',
  79. data: data
  80. })
  81. }
  82. //提交
  83. export function studyFormApply_tj(data) {
  84. return request({
  85. url: '/system/business/studyFormApply/tj',
  86. method: 'post',
  87. data: data
  88. })
  89. }
  90. //复核通过
  91. export function studyFormApply_fhtg(data) {
  92. return request({
  93. url: '/system/business/studyFormApply/fhtg',
  94. method: 'post',
  95. data: data
  96. })
  97. }
  98. //复核拒绝
  99. export function studyFormApply_fhjj(data) {
  100. return request({
  101. url: '/system/business/studyFormApply/fhjj',
  102. method: 'post',
  103. data: data
  104. })
  105. }
  106. //审核通过
  107. export function studyFormApply_shtg(data) {
  108. return request({
  109. url: '/system/business/studyFormApply/shtg',
  110. method: 'post',
  111. data: data
  112. })
  113. }
  114. //审核拒绝
  115. export function studyFormApply_shjj(data) {
  116. return request({
  117. url: '/system/business/studyFormApply/shjj',
  118. method: 'post',
  119. data: data
  120. })
  121. }
  122. //审阅
  123. export function studyFormApply_sy(data) {
  124. return request({
  125. url: '/system/business/studyFormApply/sy',
  126. method: 'post',
  127. data: data
  128. })
  129. }
  130. //保存字段勾选记录
  131. export function studyFormApply_updateZdgxjl(data) {
  132. return request({
  133. url: '/system/business/studyFormApply/updateZdgxjl',
  134. method: 'post',
  135. data: data
  136. })
  137. }
  138. //保存复核意见
  139. export function studyFormApply_updateFhyjjl(data) {
  140. return request({
  141. url: '/system/business/studyFormApply/updateFhyjjl',
  142. method: 'post',
  143. data: data
  144. })
  145. }
  146. //保存表单内容
  147. export function studyFormApply_updateBdnr(data) {
  148. return request({
  149. url: '/system/business/studyFormApply/updateBdnr',
  150. method: 'post',
  151. data: data
  152. })
  153. }