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

180 lines
3.6 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. export function studyFormApply_jcgjqmxxList(query) {
  27. return request({
  28. url: '/system/business/studyFormApply/jcgjqmxxList',
  29. method: 'get',
  30. params: query
  31. })
  32. }
  33. //详情
  34. export function studyFormApply_info(query) {
  35. return request({
  36. url: '/system/business/studyFormApply/info',
  37. method: 'get',
  38. params: query
  39. })
  40. }
  41. //导出
  42. export function studyFormApply_exportDetail(query) {
  43. return request({
  44. url: '/system/business/studyFormApply/exportDetail',
  45. method: 'get',
  46. params: query
  47. })
  48. }
  49. //加签
  50. export function studyFormApply_jq(data) {
  51. return request({
  52. url: '/system/business/studyFormApply/jq',
  53. method: 'post',
  54. data: data
  55. })
  56. }
  57. //废止
  58. export function studyFormApply_fz(data) {
  59. return request({
  60. url: '/system/business/studyFormApply/fz',
  61. method: 'post',
  62. data: data
  63. })
  64. }
  65. //确认废止
  66. export function studyFormApply_qrfz(data) {
  67. return request({
  68. url: '/system/business/studyFormApply/qrfz',
  69. method: 'post',
  70. data: data
  71. })
  72. }
  73. //更换归属人
  74. export function studyFormApply_ghgsr(data) {
  75. return request({
  76. url: '/system/business/studyFormApply/ghgsr',
  77. method: 'post',
  78. data: data
  79. })
  80. }
  81. //保存
  82. export function studyFormApply_bc(data) {
  83. return request({
  84. url: '/system/business/studyFormApply/bc',
  85. method: 'post',
  86. data: data
  87. })
  88. }
  89. //仅保存
  90. export function studyFormApply_bcOnly(data) {
  91. return request({
  92. url: '/system/business/studyFormApply/bcOnly',
  93. method: 'post',
  94. data: data
  95. })
  96. }
  97. //提交
  98. export function studyFormApply_tj(data) {
  99. return request({
  100. url: '/system/business/studyFormApply/tj',
  101. method: 'post',
  102. data: data
  103. })
  104. }
  105. //复核通过
  106. export function studyFormApply_fhtg(data) {
  107. return request({
  108. url: '/system/business/studyFormApply/fhtg',
  109. method: 'post',
  110. data: data
  111. })
  112. }
  113. //复核拒绝
  114. export function studyFormApply_fhjj(data) {
  115. return request({
  116. url: '/system/business/studyFormApply/fhjj',
  117. method: 'post',
  118. data: data
  119. })
  120. }
  121. //审核通过
  122. export function studyFormApply_shtg(data) {
  123. return request({
  124. url: '/system/business/studyFormApply/shtg',
  125. method: 'post',
  126. data: data
  127. })
  128. }
  129. //审核拒绝
  130. export function studyFormApply_shjj(data) {
  131. return request({
  132. url: '/system/business/studyFormApply/shjj',
  133. method: 'post',
  134. data: data
  135. })
  136. }
  137. //审阅
  138. export function studyFormApply_sy(data) {
  139. return request({
  140. url: '/system/business/studyFormApply/sy',
  141. method: 'post',
  142. data: data
  143. })
  144. }
  145. //保存字段勾选记录
  146. export function studyFormApply_updateZdgxjl(data) {
  147. return request({
  148. url: '/system/business/studyFormApply/updateZdgxjl',
  149. method: 'post',
  150. data: data
  151. })
  152. }
  153. //保存复核意见
  154. export function studyFormApply_updateFhyjjl(data) {
  155. return request({
  156. url: '/system/business/studyFormApply/updateFhyjjl',
  157. method: 'post',
  158. data: data
  159. })
  160. }
  161. //保存表单内容
  162. export function studyFormApply_updateBdnr(data) {
  163. return request({
  164. url: '/system/business/studyFormApply/updateBdnr',
  165. method: 'post',
  166. data: data
  167. })
  168. }