移动端
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

120 wiersze
2.4 KiB

  1. import request from '@/utils/request'
  2. //手机调查-入户核查
  3. export function rhhcList(query){
  4. return request({
  5. url:'/home/homesteadzjdzdxx/rhhcMobileList',
  6. method:'get',
  7. params: query
  8. })
  9. }
  10. //手机调查-用户切换部门
  11. export function changeDept(id){
  12. return request({
  13. url:'/system/user/changeDept?loginDeptID='+id,
  14. method:'get',
  15. })
  16. }
  17. // 查询数据调查-宅基地宗地列表
  18. export function listZjdzd(query) {
  19. return request({
  20. url: '/home/homesteadzjdzdxx/list',
  21. method: 'get',
  22. params: query
  23. })
  24. }
  25. // 导出数据调查-宅基地宗地
  26. export function exportZjdzd(query) {
  27. return request({
  28. url: '/houseSurvey/zjdzd/export',
  29. method: 'get',
  30. params: query
  31. })
  32. }
  33. // 查询数据调查-宅基地宗地详细
  34. export function getZjdzd(id) {
  35. return request({
  36. url: '/home/homesteadzjdzdxx/get/' + id,
  37. method: 'get'
  38. })
  39. }
  40. // 新增数据调查-宅基地宗地
  41. export function addZjdzd(data) {
  42. return request({
  43. url: '/houseSurvey/zjdzd/add',
  44. method: 'post',
  45. data: data
  46. })
  47. }
  48. // 新增数据调查-户主信息
  49. export function zjdzdConnectTask(data) {
  50. return request({
  51. url: '/houseSurvey/zjdzd/connectTask',
  52. method: 'post',
  53. data: data
  54. })
  55. }
  56. // 修改数据调查-宅基地宗地
  57. export function updateZjdzd(data) {
  58. return request({
  59. url: '/home/homesteadzjdzdxx/edit',
  60. method: 'post',
  61. data: data
  62. })
  63. }
  64. // 删除数据调查-宅基地宗地
  65. export function delZjdzd(id) {
  66. return request({
  67. url: '/houseSurvey/zjdzd/remove/' + id,
  68. method: 'get'
  69. })
  70. }
  71. // 上传文件
  72. export function uploadFile(data) {
  73. return request({
  74. url: '/common/upload',
  75. method: 'post',
  76. data: data
  77. })
  78. }
  79. //查询当前登录账号坐标
  80. export function getQueryLand() {
  81. return request({
  82. url: '/system/dept/get/current',
  83. method: 'get'
  84. })
  85. }
  86. // 查询数据调查-宅基地宗地列表
  87. export function delZjdzdInfo(query) {
  88. return request({
  89. url: '/houseSurvey/zjdzd/delZjdzdInfo',
  90. method: 'get',
  91. params: query
  92. })
  93. }
  94. // 提交照片-宅基地宗地
  95. export function submitUploadImageList(data) {
  96. return request({
  97. url: '/houseSurvey/zjdzd/submitUploadImageList',
  98. method: 'post',
  99. data: data
  100. })
  101. }
  102. // 数据审核-宅基地宗地
  103. export function submitOnly(data) {
  104. return request({
  105. url: '/houseSurvey/zjdzd/submitOnly',
  106. method: 'post',
  107. data: data
  108. })
  109. }