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

99 lines
1.8 KiB

  1. import request from '@/utils/request'
  2. //查询列表
  3. export function getList(data){
  4. return request({
  5. url:'/home/mobile/zyyctcList',
  6. method:'get',
  7. params:data
  8. })
  9. }
  10. //删除列表项
  11. export function removeList(id){
  12. return request({
  13. url:'/house/zyyctc/remove/'+id,
  14. method:'get'
  15. })
  16. }
  17. //宅基地流转详情
  18. export function getZyyctc(id){
  19. return request({
  20. url:'/home/mobile/getZyyctc/'+id,
  21. method:'get'
  22. })
  23. }
  24. //宅基地流转详情
  25. export function dyAdd(data){
  26. return request({
  27. url:'/home/mobile/zyyctcAdd',
  28. method:'post',
  29. data:data
  30. })
  31. }
  32. // 条件查询使用权人列表
  33. export function selectHomesteadObligeeMapList(query) {
  34. return request({
  35. url: '/home/mobile/selectHomesteadObligeeMapList',
  36. method: 'get',
  37. params: query
  38. })
  39. }
  40. //宅基地信息
  41. export function getByLyZjddm(data){
  42. return request({
  43. url:'/home/mobile/getByZjddm/'+ data,
  44. method:'get',
  45. })
  46. }
  47. // 查询农民房屋列表
  48. export function listHomesteadnmfw(query) {
  49. return request({
  50. url: '/home/mobile/nmfwList',
  51. method: 'get',
  52. params: query
  53. })
  54. }
  55. //查询当前登录账号坐标
  56. export function getQueryLand(id) {
  57. return request({
  58. url: '/home/mobile/get/current/' + id,
  59. method: 'get'
  60. })
  61. }
  62. //宅基地流转保存
  63. export function zyyctcEdit(data){
  64. return request({
  65. url:'/home/mobile/editZyyctc',
  66. method:'post',
  67. data:data
  68. })
  69. }
  70. //宅基地流转提交
  71. /*export function zyyctcApply(id){
  72. return request({
  73. url:'/house/zyyctc/submitApply/'+id,
  74. method:'post',
  75. })
  76. }*/
  77. export function zyyctcApply(id){
  78. return request({
  79. url:'/home/mobile/paidExitSubmitApply/'+id,
  80. method:'post',
  81. })
  82. }
  83. // 查询权利人列表
  84. export function getShyqrs(query) {
  85. return request({
  86. url: '/home/mobile/getShyqrs',
  87. method: 'get',
  88. params: query
  89. })
  90. }