addclue.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import request from '@/utils/request'
  2. //新增项目申报表fgw:xmsb:add
  3. export function getxmsbAddFn(data) {
  4. return request({
  5. url: '/fgw/xmsb',
  6. method: 'post',
  7. data:data
  8. })
  9. }
  10. //修改项目申报表fgw:xmsb:edit
  11. export function getxmsbPutFn(data) {
  12. return request({
  13. url: '/fgw/xmsb/put',
  14. method: 'post',
  15. data:data
  16. })
  17. }
  18. //删除
  19. export function getxmsbdelFn(data) {
  20. return request({
  21. url: '/fgw/xmsb/delete/'+data,
  22. method: 'get',
  23. })
  24. }
  25. //项目申报表详情fgw:xmsb:query
  26. export function getxmsbDetail(data) {
  27. return request({
  28. url: '/fgw/xmsb/'+data,
  29. method: 'get',
  30. })
  31. }
  32. //新增节点安排fgw:jdap:add
  33. export function getaddzdapdFn(data) {
  34. return request({
  35. url: '/fgw/jdap',
  36. method: 'post',
  37. data:data,
  38. })
  39. }
  40. // 修改节点安排fgw:jdap:edit
  41. export function getputzdapdFn(data) {
  42. return request({
  43. url: '/fgw/jdap/put',
  44. method: 'post',
  45. data:data
  46. })
  47. }
  48. // 删除节点安排fgw:jdap:remove
  49. export function getdelzdapdFn(data) {
  50. return request({
  51. url: '/fgw/jdap/delete/'+data,
  52. method: 'get',
  53. })
  54. }
  55. // 查看节点安排fgw:jdap:list
  56. export function getlistzdapdFn(data) {
  57. return request({
  58. url: '/fgw/jdap/list',
  59. method: 'get',
  60. data:data
  61. })
  62. }
  63. // 查看节点安排详情fgw:jdap:query
  64. export function getdetailzdapdFn(data) {
  65. return request({
  66. url: '/fgw/jdap/'+data,
  67. method: 'get',
  68. })
  69. }
  70. // 节点安排审核fgw:jdap:jdsh
  71. export function getshzdapdFn(data) {
  72. return request({
  73. url: '/fgw/jdap/jdsh',
  74. method: 'get',
  75. data:data
  76. })
  77. }
  78. // 节点安排催报fgw:jdap:jdcb
  79. export function getcbzdlapdFn(data) {
  80. return request({
  81. url: '/fgw/jdap/cb/'+data,
  82. method: 'get',
  83. })
  84. }