Blame view

src/api/djbDetail.js 4.09 KB
1 2 3
/*
 * @Description: 登记簿详情页
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-17 10:11:14
5 6
 */

田浩浩 committed
7
import request from '@/utils/request'
8
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
9 10 11 12 13
/**
 * @description: 获取登记封面
 * @param {*} data
 * @author: renchao
 */
任超 committed
14
export function getDjbfm (data) {
田浩浩 committed
15
  return request({
任超 committed
16
    url: SERVER.SERVERAPI + '/rest/djbDetail/getDjbFm',
田浩浩 committed
17 18 19 20
    method: 'get',
    params: data
  })
}
xiaomiao committed
21 22 23 24 25 26 27 28 29 30 31 32
/**
 * @description: 获取权利类型数组
 * @param {*} params
 * @author: renchao
 */
 export function getQllxByBdcdyid (params) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getQllxByBdcdyid',
    method: 'get',
    params
  })
}
33 34 35 36 37
/**
 * @description: 获取登记目录
 * @param {*} data
 * @author: renchao
 */
任超 committed
38
export function getBdcqldjmlByBdcdyid (data) {
田浩浩 committed
39
  return request({
任超 committed
40
    url: SERVER.SERVERAPI + '/rest/djbDetail/getBdcqldjmlByBdcdyid',
田浩浩 committed
41 42 43 44 45
    method: 'get',
    params: data
  })
}

46 47 48 49 50
/**
 * @description: 获取宗地信息
 * @param {*} data
 * @author: renchao
 */
任超 committed
51
export function getZdjjxxBybdcdyid (data) {
田浩浩 committed
52
  return request({
任超 committed
53
    url: SERVER.SERVERAPI + '/rest/djbDetail/getZdjjxxBybdcdyid',
田浩浩 committed
54 55 56 57 58
    method: 'get',
    params: data
  })
}

59 60 61 62 63
/**
 * @description: 根据受理单元标识,获取宗地信息
 * @param {*} data
 * @author: renchao
 */
任超 committed
64
export function getZdjjxxBySLdy (data) {
田浩浩 committed
65
  return request({
任超 committed
66
    url: SERVER.SERVERAPI + '/rest/djbDetail/getZdjjxxBySLdy',
田浩浩 committed
67 68 69 70 71
    method: 'get',
    params: data
  })
}

72 73 74 75 76
/**
 * @description: 获取不动产权利及其他事项
 * @param {*} data
 * @author: renchao
 */
任超 committed
77
export function getBdcqljqtsx (data) {
田浩浩 committed
78
  return request({
任超 committed
79
    url: SERVER.SERVERAPI + '/rest/djbDetail/getBdcqljqtsx',
田浩浩 committed
80 81 82 83 84
    method: 'get',
    params: data
  })
}

85
/**
86 87 88 89 90 91 92 93 94 95 96 97 98
 * @description: 获取土地所有权
 * @param {*} data
 * @author: renchao
 */
export function getTdsyqList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getTdsyqList',
    method: 'post',
    data
  })
}

/**
99 100 101 102
 * @description: 获取建设用地使用权
 * @param {*} data
 * @author: renchao
 */
任超 committed
103
export function getJsydsyqList (data) {
田浩浩 committed
104
  return request({
任超 committed
105
    url: SERVER.SERVERAPI + '/rest/djbDetail/getJsydsyqList',
田浩浩 committed
106 107 108 109
    method: 'post',
    data
  })
}
田浩浩 committed
110

111 112 113 114 115
/**
 * @description: 获取房屋独幢信息集合
 * @param {*} data
 * @author: renchao
 */
任超 committed
116
export function getFdcq2List (data) {
田浩浩 committed
117
  return request({
任超 committed
118
    url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcq2List',
田浩浩 committed
119 120 121 122 123
    method: 'post',
    data
  })
}

124 125 126 127 128
/**
 * @description: 获取抵押权
 * @param {*} data
 * @author: renchao
 */
任超 committed
129
export function getDiyaqList (data) {
田浩浩 committed
130
  return request({
任超 committed
131
    url: SERVER.SERVERAPI + '/rest/djbDetail/getDiyaqList',
田浩浩 committed
132 133 134 135
    method: 'post',
    data
  })
}
136 137 138 139 140
/**
 * @description: 获取地役权
 * @param {*} data
 * @author: renchao
 */
任超 committed
141
export function getDiyiqList (data) {
田浩浩 committed
142
  return request({
任超 committed
143
    url: SERVER.SERVERAPI + '/rest/djbDetail/getDiyiqList',
田浩浩 committed
144 145 146 147
    method: 'post',
    data
  })
}
148 149 150 151 152
/**
 * @description: 获取预告登记
 * @param {*} data
 * @author: renchao
 */
任超 committed
153
export function getYgdjList (data) {
田浩浩 committed
154
  return request({
任超 committed
155
    url: SERVER.SERVERAPI + '/rest/djbDetail/getYgdjList',
田浩浩 committed
156 157 158 159
    method: 'post',
    data
  })
}
160 161 162 163 164
/**
 * @description: 获取异议登记
 * @param {*} data
 * @author: renchao
 */
任超 committed
165
export function getYydjList (data) {
田浩浩 committed
166
  return request({
任超 committed
167
    url: SERVER.SERVERAPI + '/rest/djbDetail/getYydjList',
田浩浩 committed
168 169 170 171
    method: 'post',
    data
  })
}
172 173 174 175 176
/**
 * @description: 获取查封登记
 * @param {*} data
 * @author: renchao
 */
任超 committed
177
export function getCfdjList (data) {
田浩浩 committed
178
  return request({
任超 committed
179
    url: SERVER.SERVERAPI + '/rest/djbDetail/getCfdjList',
田浩浩 committed
180 181 182 183
    method: 'post',
    data
  })
}
184 185 186 187 188
/**
 * @description: 获取数据比对集合
 * @param {*} data
 * @author: renchao
 */
任超 committed
189
export function getFdcqLSInfo (data) {
190
  return request({
任超 committed
191
    url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcqLSInfo',
192 193 194 195
    method: 'post',
    data
  })
}
196 197 198 199 200
/**
 * @description: 获取土地经营权、农用地使用权
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
201 202 203 204 205 206 207
export function getNydsyqList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getNydsyqList',
    method: 'post',
    data
  })
}