Blame view

src/api/djbDetail.js 5.35 KB
1 2 3
/*
 * @Description: 登记簿详情页
 * @Autor: renchao
yangwei committed
4
 * @LastEditTime: 2023-08-11 15:27:45
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
/**
 * @description: 获取权利类型数组
 * @param {*} params
 * @author: renchao
 */
renchao@pashanhoo.com committed
26
export function getQllxByBdcdyid (params) {
xiaomiao committed
27 28 29 30 31 32
  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
    method: 'get',
    params: data
  })
}
“miaofang committed
84 85 86 87 88
/**
 * @description: 获取不动产权利及其他事项Bdcdyh
 * @param {*} data
 * @author: renchao
 */
renchao@pashanhoo.com committed
89
export function getBdcqljqtsxBdcdyh (data) {
“miaofang committed
90 91 92 93 94 95
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getBdcqljqtsxBdcdyh',
    method: 'get',
    params: data
  })
}
96
/**
97 98 99 100 101 102 103 104 105 106 107 108 109
 * @description: 获取土地所有权
 * @param {*} data
 * @author: renchao
 */
export function getTdsyqList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getTdsyqList',
    method: 'post',
    data
  })
}

/**
110 111 112 113
 * @description: 获取建设用地使用权
 * @param {*} data
 * @author: renchao
 */
任超 committed
114
export function getJsydsyqList (data) {
田浩浩 committed
115
  return request({
任超 committed
116
    url: SERVER.SERVERAPI + '/rest/djbDetail/getJsydsyqList',
田浩浩 committed
117 118 119 120
    method: 'post',
    data
  })
}
田浩浩 committed
121

122
/**
renchao@pashanhoo.com committed
123 124 125 126 127 128 129 130 131 132 133 134 135
 * @description: 获取土地承包经营权
 * @param {*} data
 * @author: renchao
 */
export function getTdcbjyqList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getTdcbjyqList',
    method: 'post',
    data
  })
}

/**
136 137 138 139
 * @description: 获取房屋独幢信息集合
 * @param {*} data
 * @author: renchao
 */
任超 committed
140
export function getFdcq2List (data) {
田浩浩 committed
141
  return request({
任超 committed
142
    url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcq2List',
田浩浩 committed
143 144 145 146
    method: 'post',
    data
  })
}
147 148 149 150 151 152 153 154 155 156 157 158
/**
 * @description: 获取房屋多幢信息集合
 * @param {*} data
 * @author: renchao
 */
export function getFdcq1List (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcq1List',
    method: 'post',
    data
  })
}
田浩浩 committed
159

160 161 162 163 164
/**
 * @description: 获取抵押权
 * @param {*} data
 * @author: renchao
 */
任超 committed
165
export function getDiyaqList (data) {
田浩浩 committed
166
  return request({
任超 committed
167
    url: SERVER.SERVERAPI + '/rest/djbDetail/getDiyaqList',
田浩浩 committed
168 169 170 171
    method: 'post',
    data
  })
}
172 173 174 175 176
/**
 * @description: 获取地役权
 * @param {*} data
 * @author: renchao
 */
任超 committed
177
export function getDiyiqList (data) {
田浩浩 committed
178
  return request({
任超 committed
179
    url: SERVER.SERVERAPI + '/rest/djbDetail/getDiyiqList',
田浩浩 committed
180 181 182 183
    method: 'post',
    data
  })
}
184 185 186 187 188
/**
 * @description: 获取预告登记
 * @param {*} data
 * @author: renchao
 */
任超 committed
189
export function getYgdjList (data) {
田浩浩 committed
190
  return request({
任超 committed
191
    url: SERVER.SERVERAPI + '/rest/djbDetail/getYgdjList',
田浩浩 committed
192 193 194 195
    method: 'post',
    data
  })
}
196 197 198 199 200
/**
 * @description: 获取异议登记
 * @param {*} data
 * @author: renchao
 */
任超 committed
201
export function getYydjList (data) {
田浩浩 committed
202
  return request({
任超 committed
203
    url: SERVER.SERVERAPI + '/rest/djbDetail/getYydjList',
田浩浩 committed
204 205 206 207
    method: 'post',
    data
  })
}
208 209 210 211 212
/**
 * @description: 获取查封登记
 * @param {*} data
 * @author: renchao
 */
任超 committed
213
export function getCfdjList (data) {
田浩浩 committed
214
  return request({
任超 committed
215
    url: SERVER.SERVERAPI + '/rest/djbDetail/getCfdjList',
田浩浩 committed
216 217 218 219
    method: 'post',
    data
  })
}
220 221 222 223 224
/**
 * @description: 获取数据比对集合
 * @param {*} data
 * @author: renchao
 */
任超 committed
225
export function getFdcqLSInfo (data) {
226
  return request({
任超 committed
227
    url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcqLSInfo',
228 229 230 231
    method: 'post',
    data
  })
}
232 233 234 235 236
/**
 * @description: 获取土地经营权、农用地使用权
 * @param {*} data
 * @author: renchao
 */
蔡俊立 committed
237 238 239 240 241 242 243
export function getNydsyqList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getNydsyqList',
    method: 'post',
    data
  })
}
xiaomiao committed
244 245 246 247 248 249 250

/**
 * @description: 获取当前权力信息和上手权力信息
 * @param {*} data
 * @author: renchao
 */

renchao@pashanhoo.com committed
251
export function getDjbQlxxDiff (data) {
xiaomiao committed
252 253 254 255 256
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getDjbQlxxDiff?bsmQlxx=' + data,
    method: 'post',
  })
}
yangwei committed
257 258 259 260 261 262

/**
 * @description: 获取林权登记簿信息
 * @param {*} data
 * @author: renchao
 */
renchao@pashanhoo.com committed
263
export function getLqList (data) {
yangwei committed
264 265 266 267 268 269
  return request({
    url: SERVER.SERVERAPI + '/rest/djbDetail/getLqList',
    method: 'post',
    data
  })
}