Blame view

src/api/business.js 22 KB
任超 committed
1
import request from '@/utils/request'
2 3
import SERVER from './config'

任超 committed
4 5
class business {
  // xml
田浩浩 committed
6
  async queryXML(id) {
任超 committed
7
    return request({
田浩浩 committed
8
      url: SERVER.SERVERAPI + '/rest/reg/sjsbFunctionOper/queryXML',
任超 committed
9 10 11 12 13 14
      method: 'get',
      params: {
        msgid: id
      }
    })
  }
1  
jiaozeping@pashanhoo.com committed
15
  // 土地所有权
田浩浩 committed
16
  async getQlfQlTdsyqList(data) {
任超 committed
17
    return request({
田浩浩 committed
18
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/getDataPage',
任超 committed
19 20 21 22
      method: 'post',
      data
    })
  }
1  
jiaozeping@pashanhoo.com committed
23
  // 建设用地、宅基地使用权
田浩浩 committed
24
  async getQlfQlJsydsyqList(data) {
任超 committed
25
    return request({
田浩浩 committed
26
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/getDataPage',
任超 committed
27 28 29 30
      method: 'post',
      data
    })
  }
1  
jiaozeping@pashanhoo.com committed
31
  // 房地产权_项目内多幢房屋信息
田浩浩 committed
32
  async getQltFwFdcqDzList(data) {
任超 committed
33
    return request({
田浩浩 committed
34
      url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/getDataPage',
任超 committed
35 36 37 38
      method: 'post',
      data
    })
  }
1  
jiaozeping@pashanhoo.com committed
39
  // 房地产权_独幢、层、套、间房屋信息
田浩浩 committed
40
  async getQltFwFdcqYzList(data) {
任超 committed
41
    return request({
田浩浩 committed
42
      url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/getDataPage',
任超 committed
43 44 45 46
      method: 'post',
      data
    })
  }
1  
jiaozeping@pashanhoo.com committed
47
  // 建筑物区分所有权业主共有部分信息 
田浩浩 committed
48
  async getQlfFwFdcqQfsyqList(data) {
任超 committed
49
    return request({
田浩浩 committed
50
      url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqQfsyq/getDataPage',
任超 committed
51 52 53 54
      method: 'post',
      data
    })
  }
1  
jiaozeping@pashanhoo.com committed
55
  // 海域(含无居民海岛)使用权
田浩浩 committed
56
  async getQlfQlHysyqByConditon(data) {
1  
jiaozeping@pashanhoo.com committed
57
    return request({
田浩浩 committed
58
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlHysyq/getDataPage',
1  
jiaozeping@pashanhoo.com committed
59 60 61 62
      method: 'post',
      data
    })
  }
任超 committed
63
  // 构(建)筑物所有权
田浩浩 committed
64
  async getQltQlGjzwsyqList(data) {
任超 committed
65
    return request({
田浩浩 committed
66
      url: SERVER.SERVERAPI + '/rest/reg/QltQlGjzwsyq/getDataPage',
任超 committed
67 68 69 70 71
      method: 'post',
      data
    })
  }
  // 农用地使用权(非林地)
田浩浩 committed
72
  async getQlfQlNydsyqByConditon(data) {
任超 committed
73
    return request({
田浩浩 committed
74
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlNydsyq/getDataPage',
任超 committed
75 76 77 78 79
      method: 'post',
      data
    })
  }
  // 林权
田浩浩 committed
80
  async getQltQlLqList(data) {
任超 committed
81
    return request({
田浩浩 committed
82
      url: SERVER.SERVERAPI + '/rest/reg/QltQlLq/getDataPage',
任超 committed
83 84 85 86 87
      method: 'post',
      data
    })
  }
  // 注销登记
田浩浩 committed
88
  async getQlfQlZxdjList(data) {
任超 committed
89
    return request({
田浩浩 committed
90
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlZxdj/getDataPage',
任超 committed
91 92 93 94 95
      method: 'post',
      data
    })
  }
  // 异议登记信息
田浩浩 committed
96
  async getQlfQlYydjList(data) {
任超 committed
97
    return request({
田浩浩 committed
98
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlYydj/getDataPage',
任超 committed
99 100 101 102 103
      method: 'post',
      data
    })
  }
  // 预告登记信息
田浩浩 committed
104
  async getQlfQlYgdjList(data) {
任超 committed
105
    return request({
田浩浩 committed
106
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlYgdj/getDataPage',
任超 committed
107 108 109 110
      method: 'post',
      data
    })
  }
1  
jiaozeping@pashanhoo.com committed
111
  // 查封登记信息
田浩浩 committed
112
  async getQlfQlCfdjList(data) {
1  
jiaozeping@pashanhoo.com committed
113
    return request({
田浩浩 committed
114
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlCfdj/getDataPage',
1  
jiaozeping@pashanhoo.com committed
115 116 117 118 119 120 121 122
      method: 'post',
      data
    })
  }



  // 抵押权登记
田浩浩 committed
123
  async getQlfQlDyaqList(data) {
1  
jiaozeping@pashanhoo.com committed
124
    return request({
田浩浩 committed
125
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlDyaq/getDataPage',
1  
jiaozeping@pashanhoo.com committed
126 127 128 129 130
      method: 'post',
      data
    })
  }

任超 committed
131
  // 地役权
田浩浩 committed
132
  async getQlfQlDyiqList(data) {
任超 committed
133
    return request({
田浩浩 committed
134
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlDyiq/getDataPage',
任超 committed
135 136 137 138 139 140
      method: 'post',
      data
    })
  }

  // 申请人属性信息-业务表单
田浩浩 committed
141
  async getDjfDjSqrById(bsmSjsb) {
任超 committed
142
    return request({
田浩浩 committed
143
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSqr/detail',
任超 committed
144 145 146 147 148 149 150
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 申请人属性信息-业务-修改
田浩浩 committed
151
  async updateDjfDjSqr(data) {
任超 committed
152
    return request({
田浩浩 committed
153
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSqr/edit',
蔡俊立 committed
154
      method: 'post',
任超 committed
155 156 157 158
      data
    })
  }
  // 登记归档信息-业务表单
田浩浩 committed
159
  async getDjfDjGdById(bsmSjsb) {
任超 committed
160
    return request({
田浩浩 committed
161
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjGd/detail',
任超 committed
162 163 164 165 166 167 168
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 登记归档信息-业务-修改
田浩浩 committed
169
  async updateDjfDjGd(data) {
任超 committed
170
    return request({
田浩浩 committed
171
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjGd/edit',
任超 committed
172 173 174 175 176
      method: 'put',
      data
    })
  }
  // 户信息- 业务表单
田浩浩 committed
177
  async getKttFwHById(bsmSjsb) {
任超 committed
178
    return request({
田浩浩 committed
179
      url: SERVER.SERVERAPI + '/rest/reg/KttFwH/detail',
任超 committed
180 181 182 183 184 185 186
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 户信息-业务-修改
田浩浩 committed
187
  async updateKttFwH(data) {
任超 committed
188
    return request({
田浩浩 committed
189
      url: SERVER.SERVERAPI + '/rest/reg/KttFwH/edit',
蔡俊立 committed
190
      method: 'post',
任超 committed
191 192 193 194
      data
    })
  }
  //登记发证信息
田浩浩 committed
195 196 197
  async getDjfDjFzDetailById(bsmSjsb) {
    return request({
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjFz/detail',
任超 committed
198 199 200 201 202 203 204
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改登记发证信息
田浩浩 committed
205
  async updateDjfDjFz(data) {
任超 committed
206
    return request({
田浩浩 committed
207
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjFz/edit',
蔡俊立 committed
208
      method: 'post',
任超 committed
209 210 211 212
      data
    })
  }
  // 层信息- 业务表单
田浩浩 committed
213
  async getKttFwCById(bsmSjsb) {
任超 committed
214
    return request({
田浩浩 committed
215
      url: SERVER.SERVERAPI + '/rest/reg/KttFwC/detail',
任超 committed
216 217 218 219 220 221 222
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //登记缮证信息
田浩浩 committed
223
  async getDjfDjSzById(bsmSjsb) {
任超 committed
224
    return request({
田浩浩 committed
225
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSz/detail',
任超 committed
226 227 228 229 230 231 232
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 层信息-业务-修改
田浩浩 committed
233
  async updateKttFwC(data) {
任超 committed
234
    return request({
田浩浩 committed
235
      url: SERVER.SERVERAPI + '/rest/reg/KttFwC/edit',
蔡俊立 committed
236
      method: 'post',
任超 committed
237 238 239 240
      data
    })
  }
  //修改登记缮证信息
田浩浩 committed
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
  async updateDjfDjSz(data) {
    return request({
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSz/edit',
      method: 'post',
      data
    })
  }
  //登记审核信息
  async getDjfDjShById(bsmSjsb) {
    return request({
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSh/detail',
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改登记审核信息
  async updateDjfDjSh(data) {
任超 committed
260
    return request({
田浩浩 committed
261
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSh/edit',
蔡俊立 committed
262
      method: 'post',
任超 committed
263 264 265
      data
    })
  }
田浩浩 committed
266

任超 committed
267
  //登记审核信息
田浩浩 committed
268
  async getDjfDjDbById(bsmSjsb) {
任超 committed
269
    return request({
田浩浩 committed
270
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjDb/detail',
任超 committed
271 272 273 274 275 276 277
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改登记审核信息
田浩浩 committed
278
  async updateDjfDjDb(data) {
任超 committed
279
    return request({
田浩浩 committed
280
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjDb/edit',
蔡俊立 committed
281
      method: 'post',
任超 committed
282 283 284
      data
    })
  }
田浩浩 committed
285

任超 committed
286
  //登记收件信息
田浩浩 committed
287
  async getDjfDjSjById(bsmSjsb) {
任超 committed
288
    return request({
田浩浩 committed
289
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSj/detail',
任超 committed
290 291 292 293 294 295 296
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改登记收件信息
田浩浩 committed
297
  async updateDjfDjSj(data) {
任超 committed
298
    return request({
田浩浩 committed
299
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSj/edit',
蔡俊立 committed
300
      method: 'post',
任超 committed
301 302 303 304
      data
    })
  }
  //建设用地、宅基地使用权
田浩浩 committed
305
  async getQlfQlJsydsyqById(bsmSjsb) {
任超 committed
306
    return request({
田浩浩 committed
307
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/detail',
任超 committed
308 309 310 311 312 313 314
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改建设用地、宅基地使用权
田浩浩 committed
315
  async updateQlfQlJsydsyq(data) {
任超 committed
316
    return request({
田浩浩 committed
317
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/edit',
蔡俊立 committed
318
      method: 'post',
任超 committed
319 320 321 322
      data
    })
  }
  // 登记受理申请信息 -- 业务表单
田浩浩 committed
323
  async getDjtDjSlsqById(bsmSjsb) {
任超 committed
324
    return request({
田浩浩 committed
325
      url: SERVER.SERVERAPI + '/rest/reg/DjtDjSlsq/detail',
任超 committed
326 327 328 329 330 331 332
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 登记受理申请信息 -- 业务修改
田浩浩 committed
333
  async updateDjtDjSlsq(data) {
任超 committed
334
    return request({
田浩浩 committed
335
      url: SERVER.SERVERAPI + '/rest/reg/DjtDjSlsq/edit',
蔡俊立 committed
336
      method: 'post',
任超 committed
337 338 339 340
      data
    })
  }
  // 逻辑幢信息 -- 业务表单
田浩浩 committed
341
  async getKttFwLjzById(bsmSjsb) {
任超 committed
342
    return request({
田浩浩 committed
343
      url: SERVER.SERVERAPI + '/rest/reg/KttFwLjz/detail',
任超 committed
344 345 346 347 348 349
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
蔡俊立 committed
350

任超 committed
351
  // 逻辑幢信息 -- 业务修改
田浩浩 committed
352
  async updateKttFwLjz(data) {
任超 committed
353
    return request({
田浩浩 committed
354
      url: SERVER.SERVERAPI + '/rest/reg/KttFwLjz/edit',
蔡俊立 committed
355
      method: 'post',
任超 committed
356 357 358 359
      data
    })
  }
  //修改登记受理申请信息
田浩浩 committed
360
  async updateDjtDjSlsq(data) {
任超 committed
361
    return request({
田浩浩 committed
362
      url: SERVER.SERVERAPI + '/rest/reg/DjtDjSlsq/updateDjtDjSlsq',
任超 committed
363 364 365 366 367
      method: 'put',
      data
    })
  }
  // 权利人 -- 业务表单
田浩浩 committed
368
  async getZttGyQlrById(bsmSjsb) {
任超 committed
369
    return request({
田浩浩 committed
370
      url: SERVER.SERVERAPI + '/rest/reg/ZttGyQlr/detail',
任超 committed
371 372 373 374 375 376 377
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 权利人 -- 业务表单修改
田浩浩 committed
378
  async updateZttGyQlr(data) {
任超 committed
379
    return request({
田浩浩 committed
380
      url: SERVER.SERVERAPI + '/rest/reg/ZttGyQlr/edit',
蔡俊立 committed
381
      method: 'post',
任超 committed
382 383 384 385
      data
    })
  }
  // 宗海空间属性
田浩浩 committed
386
  async getZhK105ById(bsmSjsb) {
任超 committed
387
    return request({
田浩浩 committed
388
      url: SERVER.SERVERAPI + '/rest/reg/ZhK105/detail',
任超 committed
389 390 391 392 393 394 395
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //用海状况
田浩浩 committed
396
  async getKtfZhYhzkById(bsmSjsb) {
任超 committed
397
    return request({
田浩浩 committed
398
      url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/detail',
任超 committed
399 400 401 402 403 404 405
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 宗海空间属性-修改
田浩浩 committed
406
  async updateZhK105(data) {
任超 committed
407
    return request({
田浩浩 committed
408
      url: SERVER.SERVERAPI + '/rest/reg/ZhK105/edit',
蔡俊立 committed
409
      method: 'post',
任超 committed
410 411 412 413
      data
    })
  }
  //修改用海状况
田浩浩 committed
414
  async updateKtfZhYhzk(data) {
任超 committed
415
    return request({
田浩浩 committed
416
      url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/edit',
蔡俊立 committed
417
      method: 'post',
任超 committed
418 419 420 421
      data
    })
  }
  // 非结构化文档
田浩浩 committed
422
  async getFjF100ById(bsmSjsb) {
任超 committed
423
    return request({
田浩浩 committed
424
      url: SERVER.SERVERAPI + '/rest/reg/FjF100/detail',
任超 committed
425 426 427 428 429 430 431
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //宗地变化情况
田浩浩 committed
432
  async getKtfZdbhqkById(bsmSjsb) {
任超 committed
433
    return request({
田浩浩 committed
434
      url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/detail',
任超 committed
435 436 437 438 439 440 441
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //非结构化文档-修改
田浩浩 committed
442
  async updateFjF100(data) {
任超 committed
443
    return request({
田浩浩 committed
444
      url: SERVER.SERVERAPI + '/rest/reg/FjF100/edit',
蔡俊立 committed
445
      method: 'post',
任超 committed
446 447 448 449
      data
    })
  }
  //修改宗地变化情况
田浩浩 committed
450
  async updateKtfZdbhqk(data) {
任超 committed
451
    return request({
田浩浩 committed
452
      url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/edit',
蔡俊立 committed
453
      method: 'post',
任超 committed
454 455 456 457
      data
    })
  }
  //宗海基本信息
田浩浩 committed
458
  async getKttZhjbxxById(bsmSjsb) {
任超 committed
459
    return request({
田浩浩 committed
460
      url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/detail',
任超 committed
461 462 463 464 465 466 467
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改宗海基本信息
田浩浩 committed
468
  async updateKttZhjbxx(data) {
任超 committed
469
    return request({
田浩浩 committed
470
      url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/edit',
蔡俊立 committed
471
      method: 'post',
任超 committed
472 473 474 475
      data
    })
  }
  //宗地空间属性
田浩浩 committed
476
  async getZdK103ById(bsmSjsb) {
任超 committed
477
    return request({
田浩浩 committed
478
      url: SERVER.SERVERAPI + '/rest/reg/ZdK103/detail',
任超 committed
479 480 481 482 483 484 485
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改宗地空间属性
田浩浩 committed
486
  async updateZdK103(data) {
任超 committed
487
    return request({
田浩浩 committed
488
      url: SERVER.SERVERAPI + '/rest/reg/ZdK103/edit',
蔡俊立 committed
489
      method: 'post',
任超 committed
490 491 492 493
      data
    })
  }
  // 自然幢信息
田浩浩 committed
494
  async getKttFwZrzById(bsmSjsb) {
任超 committed
495
    return request({
田浩浩 committed
496
      url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/detail',
任超 committed
497 498 499 500 501 502 503
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //构筑物
田浩浩 committed
504
  async getKttGzwById(bsmSjsb) {
任超 committed
505
    return request({
田浩浩 committed
506
      url: SERVER.SERVERAPI + '/rest/reg/KttGzw/detail',
任超 committed
507 508 509 510 511 512 513
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 自然幢信息-修改
田浩浩 committed
514
  async updateKttFwZrz(data) {
任超 committed
515
    return request({
田浩浩 committed
516
      url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/edit',
蔡俊立 committed
517
      method: 'post',
任超 committed
518 519 520 521
      data
    })
  }
  //修改构筑物
田浩浩 committed
522
  async updateKttGzw(data) {
任超 committed
523
    return request({
田浩浩 committed
524
      url: SERVER.SERVERAPI + '/rest/reg/KttGzw/edit',
蔡俊立 committed
525
      method: 'post',
任超 committed
526 527 528 529
      data
    })
  }
  //界址点
田浩浩 committed
530
  async getKttGyJzdById(bsmSjsb) {
任超 committed
531
    return request({
田浩浩 committed
532
      url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/detail',
任超 committed
533 534 535 536 537 538 539
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改界址点
田浩浩 committed
540
  async updateKttGyJzd(data) {
任超 committed
541
    return request({
田浩浩 committed
542
      url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/edit',
蔡俊立 committed
543
      method: 'post',
任超 committed
544 545 546 547
      data
    })
  }
  //界址线信息
田浩浩 committed
548
  async getKttGyJzxById(bsmSjsb) {
任超 committed
549
    return request({
田浩浩 committed
550
      url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/detail',
任超 committed
551 552 553 554 555 556 557
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改界址线信息
田浩浩 committed
558
  async updateKttGyJzx(data) {
任超 committed
559
    return request({
田浩浩 committed
560
      url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/edit',
蔡俊立 committed
561
      method: 'post',
任超 committed
562 563 564 565
      data
    })
  }
  // 构(建)筑物所有权
田浩浩 committed
566
  async getQltQlGjzwsyqById(bsmSjsb) {
任超 committed
567
    return request({
田浩浩 committed
568
      url: SERVER.SERVERAPI + '/rest/reg/QltQlGjzwsyq/detail',
任超 committed
569 570 571 572 573 574 575
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //海域(含无居民海岛)使用权
田浩浩 committed
576
  async getQlfQlHysyqById(bsmSjsb) {
任超 committed
577
    return request({
田浩浩 committed
578
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlHysyq/detail',
任超 committed
579 580 581 582 583 584 585
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //构(建)筑物所有权 - 修改
田浩浩 committed
586
  async updateQltQlGjzwsyq(data) {
任超 committed
587
    return request({
田浩浩 committed
588
      url: SERVER.SERVERAPI + '/rest/reg/QltQlGjzwsyq/edit',
蔡俊立 committed
589
      method: 'post',
任超 committed
590 591 592 593
      data
    })
  }
  //修改海域(含无居民海岛)使用权
田浩浩 committed
594
  async updateQlfQlHysyq(data) {
任超 committed
595
    return request({
田浩浩 committed
596
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlHysyq/edit',
蔡俊立 committed
597
      method: 'post',
任超 committed
598 599 600 601
      data
    })
  }
  // 注销登记信息
田浩浩 committed
602
  async getQlfQlZxdjById(bsmSjsb) {
任超 committed
603
    return request({
田浩浩 committed
604
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlZxdj/detail',
任超 committed
605 606 607 608 609 610 611
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //注销登记信息 - 修改
田浩浩 committed
612
  async updateQlfQlZxdj(data) {
任超 committed
613
    return request({
田浩浩 committed
614
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlZxdj/edit',
蔡俊立 committed
615
      method: 'post',
任超 committed
616 617 618 619
      data
    })
  }
  // 异议登记信息
田浩浩 committed
620
  async getQlfQlYydjById(bsmSjsb) {
任超 committed
621
    return request({
田浩浩 committed
622
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlYydj/detail',
任超 committed
623 624 625 626 627 628 629
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 异议登记信息-修改
田浩浩 committed
630
  async updateQlfQlYydj(data) {
任超 committed
631
    return request({
田浩浩 committed
632
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlYydj/edit',
蔡俊立 committed
633
      method: 'post',
任超 committed
634 635 636 637
      data
    })
  }
  //林权
田浩浩 committed
638
  async getQltQlLqById(bsmSjsb) {
任超 committed
639
    return request({
田浩浩 committed
640
      url: SERVER.SERVERAPI + '/rest/reg/QltQlLq/detail',
任超 committed
641 642 643 644 645 646 647
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改林权
田浩浩 committed
648
  async updateQltQlLq(data) {
任超 committed
649
    return request({
田浩浩 committed
650
      url: SERVER.SERVERAPI + '/rest/reg/QltQlLq/edit',
蔡俊立 committed
651
      method: 'post',
任超 committed
652 653 654 655
      data
    })
  }
  //农用地使用权(非林地)
田浩浩 committed
656
  async getQlfQlNydsyqByID(bsmSjsb) {
任超 committed
657
    return request({
田浩浩 committed
658
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlNydsyq/detail',
任超 committed
659 660 661 662 663 664 665
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改农用地使用权(非林地)
田浩浩 committed
666
  async updateQlfQlNydsyq(data) {
任超 committed
667
    return request({
田浩浩 committed
668
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlNydsyq/edit',
蔡俊立 committed
669
      method: 'post',
任超 committed
670 671 672 673 674
      data
    })
  }

  // 预告登记信息
田浩浩 committed
675
  async getQlfQlYgdjById(bsmSjsb) {
任超 committed
676
    return request({
田浩浩 committed
677
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlYgdj/detail',
任超 committed
678 679 680 681 682 683 684
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //建筑物区分所有权业主共有部分信息
田浩浩 committed
685
  async getQlfFwFdcqQfsyqById(bsmSjsb) {
任超 committed
686
    return request({
田浩浩 committed
687
      url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqQfsyq/detail',
任超 committed
688 689 690 691 692 693 694
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 预告登记信息-修改
田浩浩 committed
695
  async updateQlfQlYgdj(data) {
任超 committed
696
    return request({
田浩浩 committed
697
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlYgdj/edit',
蔡俊立 committed
698
      method: 'post',
任超 committed
699 700 701 702
      data
    })
  }
  //修改建筑物区分所有权业主共有部分信息
田浩浩 committed
703
  async updateQlfFwFdcqQfsyq(data) {
任超 committed
704
    return request({
田浩浩 committed
705
      url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqQfsyq/edit',
蔡俊立 committed
706
      method: 'post',
任超 committed
707 708 709 710
      data
    })
  }
  //房地产权_独幢、层、套、间房屋信息
田浩浩 committed
711
  async getQltFwFdcqYzById(bsmSjsb) {
任超 committed
712
    return request({
田浩浩 committed
713
      url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/detail',
任超 committed
714 715 716 717 718 719 720
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改房地产权_独幢、层、套、间房屋信息
田浩浩 committed
721
  async updateQltFwFdcqYz(data) {
任超 committed
722
    return request({
田浩浩 committed
723
      url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/edit',
蔡俊立 committed
724
      method: 'post',
任超 committed
725 726 727 728
      data
    })
  }
  //房地产权_项目内多幢房屋信息
田浩浩 committed
729
  async getQltFwFdcqDzById(bsmSjsb) {
任超 committed
730
    return request({
田浩浩 committed
731
      url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/detail',
任超 committed
732 733 734 735 736 737 738
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改房地产权_项目内多幢房屋信息
田浩浩 committed
739
  async updateQltFwFdcqDz(data) {
任超 committed
740
    return request({
田浩浩 committed
741
      url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/edit',
蔡俊立 committed
742
      method: 'post',
任超 committed
743 744 745 746
      data
    })
  }
  //土地所有权
田浩浩 committed
747
  async getQlfQlTdsyqById(bsmSjsb) {
任超 committed
748
    return request({
田浩浩 committed
749
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/detail',
任超 committed
750 751 752 753 754 755 756
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  //修改土地所有权
田浩浩 committed
757
  async updateQlfQlTdsyq(data) {
任超 committed
758
    return request({
田浩浩 committed
759
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/edit',
蔡俊立 committed
760
      method: 'post',
任超 committed
761 762 763
      data
    })
  }
蔡俊立 committed
764

任超 committed
765
  // 抵押权
田浩浩 committed
766
  async getQlfQlDyaqById(bsmSjsb) {
任超 committed
767
    return request({
田浩浩 committed
768
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlDyaq/detail',
任超 committed
769 770 771 772 773 774 775
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 抵押权-修改
田浩浩 committed
776
  async updateQlfQlDyaq(data) {
任超 committed
777
    return request({
田浩浩 committed
778
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlDyaq/edit',
蔡俊立 committed
779
      method: 'post',
任超 committed
780 781 782 783
      data
    })
  }
  // 查封登记信息
田浩浩 committed
784
  async getQlfQlCfdjById(bsmSjsb) {
任超 committed
785
    return request({
田浩浩 committed
786
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlCfdj/detail',
任超 committed
787 788 789 790 791 792 793
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 查封登记信息-修改
田浩浩 committed
794
  async updateQlfQlCfdj(data) {
任超 committed
795
    return request({
田浩浩 committed
796
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlCfdj/edit',
蔡俊立 committed
797
      method: 'post',
任超 committed
798 799 800 801
      data
    })
  }

田浩浩 committed
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
    // 更正登记信息
    async getQlfQlGzdjById(bsmSjsb) {
      return request({
        url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/detail',
        method: 'get',
        params: {
          bsmSjsb: bsmSjsb
        }
      })
    }
    // 更正登记信息-修改
    async updateQlfQlGzdj(data) {
      return request({
        url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/edit',
        method: 'post',
        data
      })
    }

任超 committed
821
  // 地役权信息
田浩浩 committed
822
  async getQlfQlDyiqById(bsmSjsb) {
任超 committed
823
    return request({
田浩浩 committed
824
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlDyiq/detail',
任超 committed
825 826 827 828 829 830 831
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 地役权信息-修改
田浩浩 committed
832
  async updateQlfQlDyiq(data) {
任超 committed
833
    return request({
田浩浩 committed
834
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlDyiq/edit',
蔡俊立 committed
835
      method: 'post',
任超 committed
836 837 838 839
      data
    })
  }
  // 用海,用岛坐标
田浩浩 committed
840
  async getKtfZhYhydzbById(bsmSjsb) {
任超 committed
841
    return request({
田浩浩 committed
842
      url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/detail',
任超 committed
843 844 845 846 847 848 849
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 用海,用岛坐标-修改
田浩浩 committed
850
  async updateKtfZhYhydzb(data) {
任超 committed
851
    return request({
田浩浩 committed
852
      url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/edit',
蔡俊立 committed
853
      method: 'post',
任超 committed
854 855 856 857
      data
    })
  }
  // 登记收费信息
田浩浩 committed
858
  async getDjfDjSfById(bsmSjsb) {
任超 committed
859
    return request({
田浩浩 committed
860
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/detail',
任超 committed
861 862 863 864 865 866 867
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 登记收费信息-修改
田浩浩 committed
868
  async updateDjfDjSf(data) {
任超 committed
869
    return request({
田浩浩 committed
870
      url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/edit',
蔡俊立 committed
871
      method: 'post',
任超 committed
872 873 874
      data
    })
  }
田浩浩 committed
875

任超 committed
876
  // 线状定着物
田浩浩 committed
877
  async getKtfQtXzdzwById(bsmSjsb) {
任超 committed
878
    return request({
田浩浩 committed
879
      url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/detail',
任超 committed
880 881 882 883 884 885 886
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 线状定着物-修改
田浩浩 committed
887
  async updateKtfQtXzdzw(data) {
任超 committed
888
    return request({
田浩浩 committed
889
      url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/edit',
蔡俊立 committed
890
      method: 'post',
任超 committed
891 892 893 894
      data
    })
  }
  // 房地产权_项目内多幢房屋项目属性
田浩浩 committed
895
  async getQlfFwFdcqDzXmById(bsmSjsb) {
任超 committed
896
    return request({
田浩浩 committed
897
      url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/detail',
任超 committed
898 899 900 901 902 903 904
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 房地产权_项目内多幢房屋项目属性-修改
田浩浩 committed
905
  async updateQlfFwFdcqDzXm(data) {
任超 committed
906
    return request({
田浩浩 committed
907
      url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/edit',
蔡俊立 committed
908
      method: 'post',
任超 committed
909 910 911 912
      data
    })
  }
  // 其他相关权利
田浩浩 committed
913
  async getQlfQlQtxgqlById(bsmSjsb) {
任超 committed
914
    return request({
田浩浩 committed
915
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/detail',
任超 committed
916 917 918 919 920 921 922
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 其他相关权利-修改
田浩浩 committed
923
  async updateQlfQlQtxgql(data) {
任超 committed
924
    return request({
田浩浩 committed
925
      url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/edit',
蔡俊立 committed
926
      method: 'post',
任超 committed
927 928 929 930
      data
    })
  }
  // 宗地基本信息
田浩浩 committed
931
  async kttZdjbxxDetail(bsmSjsb) {
任超 committed
932
    return request({
田浩浩 committed
933
      url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/detail',
任超 committed
934 935 936 937 938 939 940
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 宗地基本信息-修改
田浩浩 committed
941
  async updateKttZdjbxx(data) {
任超 committed
942
    return request({
田浩浩 committed
943
      url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/edit',
蔡俊立 committed
944
      method: 'post',
任超 committed
945 946 947 948
      data
    })
  }
  // 面状定着物
田浩浩 committed
949
  async getKtfQtMzdzwById(bsmSjsb) {
任超 committed
950
    return request({
田浩浩 committed
951
      url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/detail',
任超 committed
952 953 954 955 956 957 958
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 面状定着物-修改
田浩浩 committed
959
  async updateKtfQtMzdzw(data) {
任超 committed
960
    return request({
田浩浩 committed
961
      url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/edit',
蔡俊立 committed
962
      method: 'post',
任超 committed
963 964 965 966
      data
    })
  }
  // 点状定着物信息
田浩浩 committed
967
  async getKtfQtDzdzwById(bsmSjsb) {
任超 committed
968
    return request({
田浩浩 committed
969
      url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/detail',
任超 committed
970 971 972 973 974 975 976
      method: 'get',
      params: {
        bsmSjsb: bsmSjsb
      }
    })
  }
  // 点状定着物信息-修改
田浩浩 committed
977
  async updateKtfQtDzdzw(data) {
任超 committed
978
    return request({
田浩浩 committed
979
      url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/edit',
蔡俊立 committed
980
      method: 'post',
任超 committed
981 982 983 984 985
      data
    })
  }
}
export default new business()