Blame view

src/api/ywsq.js 5.84 KB
1
/*
2
 * @Description: 业务申请
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-19 14:52:03
5
 */
6

7
import request from '@/utils/request'
8
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
9 10

/**
11
 * @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
12 13 14
 * @param {*} data
 * @author: renchao
 */
15
export function selectScBdcdy (data) {
16 17 18 19 20
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectScBdcdy',
    method: 'post',
    data
  })
蔡俊立 committed
21
}
22 23 24 25 26
/**
 * @description: 业务办理-选择权利信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
27
export function selectQlxx (data) {
28 29 30 31 32
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx',
    method: 'post',
    data
  })
蔡俊立 committed
33
}
34 35 36 37 38 39

/**
 * @description: 业务办理-选择抵押权信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
40
export function selectDiyaq (data) {
41 42 43 44 45
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq',
    method: 'post',
    data
  })
蔡俊立 committed
46
}
47 48 49 50 51 52

/**
 * @description: 业务办理-选择查封信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
53
export function selectCfdj (data) {
54 55 56 57 58
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj',
    method: 'post',
    data
  })
任超 committed
59
}
蔡俊立 committed
60

61 62 63 64 65
/**
 * @description: 获取自然幢下其他户
 * @param {*} data
 * @author: renchao
 */
任超 committed
66
export function selectOtherH (data) {
67 68 69 70 71
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectOtherH',
    method: 'post',
    data
  })
蔡俊立 committed
72 73
}

74 75 76 77 78
/**
 * @description: 业务办理-选择农用地信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
79
export function selectNydsyqQlxx (data) {
80 81 82 83 84
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectNydsyqQlxx',
    method: 'post',
    data
  })
任超 committed
85 86
}

87 88 89 90 91 92

/**
 * @description: 业务办理-选择单元-查询宗地基本信息
 * @param {*} data
 * @author: renchao
 */
任超 committed
93
export function selectZdjbxx (data) {
94 95 96 97 98
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxx',
    method: 'post',
    data
  })
任超 committed
99
}
100 101 102 103 104

/*
业务办理-选择单元-查询宗地基本信息
*/
export function selectZdjbxxSplitMergeLast (data) {
105 106 107 108 109
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxxSplitMergeLast',
    method: 'post',
    data
  })
110 111
}

112
/*
任超 committed
113 114 115
业务办理-选择单元-查询自然幢信息
*/
export function selectZrz (data) {
116 117 118 119 120
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZrzQjdc',
    method: 'post',
    data
  })
任超 committed
121 122
}

123 124 125 126 127
/**
 * @description: 选择单元-查询多幢幢信息
 * @param {*} data
 * @author: renchao
 */
128
export function selectDz (data) {
129 130 131 132 133
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDz',
    method: 'post',
    data
  })
134
}
135 136 137 138
/**
 * @description: 业务办理-选择单元-查询户信息
 * @author: renchao
 */
139

任超 committed
140
export function selectH (data) {
141 142 143 144 145
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectH',
    method: 'post',
    data
  })
146 147
}

148 149 150 151 152 153 154 155 156 157 158 159
/**
 * @description: 业务办理-选择单元-查询土地所有权信息
 * @param {*} data
 * @author: renchao
 */
export function selectTdsyqQlxx (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectTdsyqQlxx',
    method: 'post',
    data
  })
}
160 161 162 163 164 165

/**
 * @description: 业务办理-选择单元-查询建设用地、宅基地信息
 * @param {*} data
 * @author: renchao
 */
166
export function selectJsydQlxx (data) {
167 168 169 170 171
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxx',
    method: 'post',
    data
  })
172 173
}

174 175 176 177
/*
业务办理-选择单元-查询建设用地、宅基地信息
*/
export function selectJsydQlxxSplitMergeBefore (data) {
178 179 180 181 182
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxxSplitMergeBefore',
    method: 'post',
    data
  })
183 184
}

185 186 187 188 189 190
/**
 * 业务办理-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectFwsyq (data) {
191 192 193 194 195
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectFwsyqQlxx',
    method: 'post',
    data
  })
196
}
197 198 199 200 201 202
/**
 * 业务办理-预告登记-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectYgdj100 (data) {
203 204 205 206 207
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj100',
    method: 'post',
    data
  })
208 209 210 211 212 213 214
}
/**
 * 业务办理-预告登记-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectYgdj200 (data) {
215 216 217 218 219
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj200',
    method: 'post',
    data
  })
220
}
221 222 223 224 225 226
/**
 * 业务办理-预告抵押登记-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectYgdy (data) {
227 228 229 230 231
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdy',
    method: 'post',
    data
  })
232
}
233 234 235 236 237
/**
 * 根据自然幢查询房屋信息
 * @param data
 * @returns {*}
 */
tianhaohao@pashanhoo.com committed
238
export function selectHQjdc (data) {
239 240 241 242 243
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectHQjdc',
    method: 'post',
    data
  })
244
}
yuanbo committed
245 246 247 248 249 250 251 252 253 254 255 256
/**
 * @description: 选择补录权利信息
 * @param {*} data
 * @author: renchao
 */
export function selectRepairQlxx (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx',
    method: 'post',
    data
  })
}
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
/**
 * @description: 选择林权首次
 * @param {*} data
 * @author: renchao
 */
export function selectLqQjdc (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectLqQjdc',
    method: 'post',
    data
  })
}
/**
 * @description: 选择林权转移/变更/注销
 * @param {*} data
 * @author: renchao
 */
export function selectLq (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectLq',
    method: 'post',
    data
  })
}