移动端
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.

sysCbf.js 1.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import request from '@/utils/request'
  2. //查询列表
  3. export function getList(data){
  4. return request({
  5. url:'/service/cbf/list',
  6. method:'get',
  7. params:data
  8. })
  9. }
  10. //查询承包地块列表
  11. export function getCbdkms(data){
  12. return request({
  13. url:'/service/cbdkxx/getCbdkms',
  14. method:'get',
  15. params:data
  16. })
  17. }
  18. //修改
  19. export function updateSysCfb(data){
  20. return request({
  21. url:'/service/cbf/edit',
  22. method: 'post',
  23. data: data
  24. })
  25. }
  26. //批量修改承包方记事签字
  27. export function updateBatchSign(data,gsjs){
  28. return request({
  29. url:'/service/cbf/updateBatchSign?gsjs='+gsjs,
  30. method: 'post',
  31. data: data
  32. })
  33. }
  34. //修改承包方记事签字
  35. export function updateSign(data){
  36. return request({
  37. url:'/service/cbf/updateSign',
  38. method: 'post',
  39. data: data
  40. })
  41. }
  42. //批量修改承包方审核签字
  43. export function examineBatchSign(data,shyj){
  44. return request({
  45. url:'/service/cbf/examineBatchSign?shyj='+shyj,
  46. method: 'post',
  47. data: data
  48. })
  49. }
  50. //修改承包方审核签字
  51. export function examineSign(data){
  52. return request({
  53. url:'/service/cbf/examineSign',
  54. method: 'post',
  55. data: data
  56. })
  57. }