Blame view

src/api/ywbl.js 8.98 KB
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-17 10:13:24
5
 */
6

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

/**
 * @description: 业务办理-获取收藏业务集合
 * @author: renchao
 */
任超 committed
14
export function getCollectBiz () {
任超 committed
15
    return request({
任超 committed
16
        url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getCollectBiz',
任超 committed
17
        method: 'post'
任超 committed
18 19 20
    })
}

21 22 23 24 25

/**
 * @description: 业务办理-获取左侧菜单
 * @author: renchao
 */
任超 committed
26 27
export function getleftMenu () {
    return request({
任超 committed
28
        url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getleftMenu',
任超 committed
29
        method: 'post'
任超 committed
30 31
    })
}
32 33 34 35 36
/**
 * @description: 业务办理-获取下个节点内容
 * @param {*} bsmSqyw
 * @author: renchao
 */
任超 committed
37
export function getNextNode (bsmSqyw) {
任超 committed
38
    return request({
任超 committed
39
        url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw,
任超 committed
40
        method: 'post'
任超 committed
41 42 43
    })
}

44 45 46 47 48
/**
 * @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
 * @param {*} data
 * @author: renchao
 */
任超 committed
49
export function selectScBdcdy (data) {
50
    return request({
任超 committed
51
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectScBdcdy',
52
        method: 'post',
任超 committed
53
        data
54 55
    })
}
任超 committed
56

57
// /*
jiaozeping@pashanhoo.com committed
58 59 60 61 62 63
// 业务办理-选择单元-根据条件进行列表查询-房屋所有权
// */
// export function selectFwsyq (data) {
//     return request({
//         url: 'ywbl/ywsq/selectFwsyq',
//         method: 'post',
任超 committed
64
//         data
jiaozeping@pashanhoo.com committed
65 66 67
//         showLoading: true
//     })
// }
任超 committed
68

69 70 71 72 73
/**
 * @description: 待办箱列表查询接口
 * @param {*} data
 * @author: renchao
 */
任超 committed
74
export function searchTaskToDo (data) {
liangyifan committed
75
    return request({
任超 committed
76
        url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo',
liangyifan committed
77
        method: 'post',
任超 committed
78
        data
liangyifan committed
79 80
    })
}
81 82 83 84 85
/**
 * @description: 待办箱/不动产单元删除接口
 * @param {*} data
 * @author: renchao
 */
任超 committed
86
export function deleteFlow (data) {
liangyifan committed
87
    return request({
蔡俊立 committed
88
        url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteFlow',
liangyifan committed
89
        method: 'post',
任超 committed
90
        data
liangyifan committed
91 92
    })
}
93 94 95 96 97
/**
 * @description: 业务办理-发起业务申请流程
 * @param {*} data
 * @author: renchao
 */
任超 committed
98
export function startBusinessFlow (data) {
任超 committed
99
    return request({
任超 committed
100
        url: SERVER.SERVERAPI + '/rest/business/workFlow/startBusinessFlow',
任超 committed
101
        method: 'post',
任超 committed
102
        data
任超 committed
103
    })
104
}
105 106 107 108 109 110

/**
 * @description: 已办箱列表查询接口
 * @param {*} data
 * @author: renchao
 */
任超 committed
111
export function searchTaskDone (data) {
蔡俊立 committed
112
    return request({
任超 committed
113
        url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone',
蔡俊立 committed
114
        method: 'post',
任超 committed
115
        data
蔡俊立 committed
116 117
    })
}
118 119 120 121 122
/**
 * @description: 业务办理-选择权利信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
123
export function selectQlxx (data) {
蔡俊立 committed
124
    return request({
任超 committed
125
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx',
蔡俊立 committed
126
        method: 'post',
任超 committed
127
        data
蔡俊立 committed
128 129
    })
}
130 131 132 133 134 135

/**
 * @description: 业务办理-选择抵押权信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
136
export function selectDiyaq (data) {
蔡俊立 committed
137
    return request({
任超 committed
138
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq',
蔡俊立 committed
139
        method: 'post',
任超 committed
140
        data
蔡俊立 committed
141 142
    })
}
143 144 145 146 147 148

/**
 * @description: 业务办理-选择查封信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
149
export function selectCfdj (data) {
蔡俊立 committed
150
    return request({
任超 committed
151
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj',
蔡俊立 committed
152
        method: 'post',
任超 committed
153
        data
蔡俊立 committed
154 155
    })
}
156 157 158 159 160 161

/**
 * @description: 业务办理-业务申请-添加收藏业务
 * @param {*} bsmSqyw
 * @author: renchao
 */
任超 committed
162 163
export function addCollectBiz (bsmSqyw) {
    return request({
任超 committed
164
        url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw,
任超 committed
165 166 167
        method: 'post'
    })
}
168 169 170 171 172 173

/**
 * @description: 业务办理-业务申请-添加收藏业务
 * @param {*} bsmSqyw
 * @author: renchao
 */
任超 committed
174 175
export function deleteCollectBiz (bsmSqyw) {
    return request({
任超 committed
176
        url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw,
任超 committed
177 178
        method: 'post'
    })
任超 committed
179
}
180 181 182 183 184
/**
 * @description: 国有建设用地使用权/房屋使用权 -选择不动产单元
 * @param {*} data
 * @author: renchao
 */
任超 committed
185
export function choiceBdcdy (data) {
任超 committed
186
    return request({
蔡俊立 committed
187
        url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy',
任超 committed
188
        method: 'post',
任超 committed
189
        data
任超 committed
190 191 192
    })
}

193 194 195 196 197
/**
 * @description: 申请列表删除
 * @param {*} data
 * @author: renchao
 */
198
export function deleteSlbdcdy (data) {
任超 committed
199
    return request({
200
        url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteSlbdcdy',
蔡俊立 committed
201
        method: 'post',
任超 committed
202
        data
任超 committed
203
    })
蔡俊立 committed
204 205
}

206 207 208 209 210
/**
 * @description: 获取自然幢下其他户
 * @param {*} data
 * @author: renchao
 */
任超 committed
211
export function selectOtherH (data) {
蔡俊立 committed
212
    return request({
蔡俊立 committed
213
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectOtherH',
蔡俊立 committed
214
        method: 'post',
任超 committed
215
        data
蔡俊立 committed
216
    })
蔡俊立 committed
217 218
}

219 220 221 222 223 224
/**
 * @description: 认领任务
 * @param {*} bsmSlsq
 * @param {*} bestepid
 * @author: renchao
 */
任超 committed
225
export function claimTask (bsmSlsq, bestepid) {
蔡俊立 committed
226 227 228 229 230 231
    return request({
        url: SERVER.SERVERAPI + '/rest/business/workFlow/claimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid,
        method: 'get',
    })
}

232 233 234 235 236 237
/**
 * @description: 取消认领任务
 * @param {*} bsmSlsq
 * @param {*} bestepid
 * @author: renchao
 */
任超 committed
238
export function unClaimTask (bsmSlsq, bestepid) {
蔡俊立 committed
239 240 241 242
    return request({
        url: SERVER.SERVERAPI + '/rest/business/workFlow/unClaimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid,
        method: 'get',
    })
任超 committed
243 244
}

245 246 247 248 249
/**
 * @description: 业务办理-选择农用地信息-根据条件进行列表查询
 * @param {*} data
 * @author: renchao
 */
任超 committed
250 251 252 253 254 255 256 257
export function selectNydsyqQlxx (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectNydsyqQlxx',
        method: 'post',
        data
    })
}

258 259 260 261 262 263

/**
 * @description: 业务办理-选择单元-查询宗地基本信息
 * @param {*} data
 * @author: renchao
 */
任超 committed
264 265 266 267 268 269 270
export function selectZdjbxx (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxx',
        method: 'post',
        data
    })
}
271 272 273 274 275 276 277 278 279 280 281 282

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

283
/*
任超 committed
284 285 286 287 288 289 290 291 292 293
业务办理-选择单元-查询自然幢信息
*/
export function selectZrz (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZrz',
        method: 'post',
        data
    })
}

294 295 296 297 298
/**
 * @description: 选择单元-查询多幢幢信息
 * @param {*} data
 * @author: renchao
 */
299 300 301 302 303 304 305 306 307 308
export function selectDz (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDz',
        method: 'post',
        data
    })
}


/*
任超 committed
309 310 311 312 313 314 315 316
业务办理-选择单元-查询户信息
*/
export function selectH (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectH',
        method: 'post',
        data
    })
317 318
}

319 320 321 322 323 324

/**
 * @description: 业务办理-选择单元-查询建设用地、宅基地信息
 * @param {*} data
 * @author: renchao
 */
325 326 327 328 329 330
export function selectJsydQlxx (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxx',
        method: 'post',
        data
    })
331 332
}

333 334 335 336 337 338 339 340 341 342 343
/*
业务办理-选择单元-查询建设用地、宅基地信息
*/
export function selectJsydQlxxSplitMergeBefore (data) {
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxxSplitMergeBefore',
        method: 'post',
        data
    })
}

344 345 346 347 348 349
/**
 * 业务办理-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectFwsyq (data) {
350 351 352 353 354
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectFwsyq',
        method: 'post',
        data
    })
355
}
356 357 358 359 360 361
/**
 * 业务办理-预告登记-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectYgdj100 (data) {
362 363 364 365 366
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj100',
        method: 'post',
        data
    })
367 368 369 370 371 372 373
}
/**
 * 业务办理-预告登记-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectYgdj200 (data) {
374 375 376 377 378
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj200',
        method: 'post',
        data
    })
379
}
380 381 382 383 384 385
/**
 * 业务办理-预告抵押登记-选择权利信息-根据条件进行列表查询
 * @param data
 * @returns {*}
 */
export function selectYgdy (data) {
386 387 388 389 390
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdy',
        method: 'post',
        data
    })
391
}
392 393 394 395 396 397
/**
 * 根据自然幢查询房屋信息
 * @param data
 * @returns {*}
 */
export function selectAllHInfo (data) {
398 399 400 401 402
    return request({
        url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectAllHInfo',
        method: 'post',
        data
    })
403
}