Blame view

src/api/ywbl.js 3.54 KB
1 2
import request from '@/utils/request'
/* 
任超 committed
3
业务办理-获取收藏业务集合
4
*/
任超 committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
export function getCollectBiz () {
    return request({
        url: '/ywbl/BusinessApply/getCollectBiz',
        method: 'post'
    })
}

/* 
业务办理-获取左侧菜单
*/
export function getleftMenu () {
    return request({
        url: '/ywbl/BusinessApply/getleftMenu',
        method: 'post'
    })
}
/* 
业务办理-获取下个节点内容
*/
export function getNextNode (bsmSqyw) {
    return request({
        url: '/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw,
        method: 'post',
    })
}

/* 
jiaozeping@pashanhoo.com committed
32
业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
任超 committed
33
*/
34
export function selectScBdcdy (data) {
35
    return request({
36
        url: '/ywbl/ywsq/selectScBdcdy',
37
        method: 'post',
任超 committed
38 39
        data,
        showLoading: true
40 41
    })
}
任超 committed
42

jiaozeping@pashanhoo.com committed
43 44 45 46 47 48 49 50 51 52 53
// /* 
// 业务办理-选择单元-根据条件进行列表查询-房屋所有权
// */
// export function selectFwsyq (data) {
//     return request({
//         url: 'ywbl/ywsq/selectFwsyq',
//         method: 'post',
//         data,
//         showLoading: true
//     })
// }
任超 committed
54

liangyifan committed
55 56 57
// 待办箱列表查询接口
export function searchTaskToDo (data) {
    return request({
liangyifan committed
58
        url: '/workBox/search/searchTaskToDo',
liangyifan committed
59
        method: 'post',
任超 committed
60 61
        data,
        showLoading: true
liangyifan committed
62 63
    })
}
liangyifan committed
64 65 66 67 68 69 70 71
// 待办箱删除接口
export function deleteFlow (data) {
    return request({
        url: 'business/workFlow/deleteFlow',
        method: 'post',
        data
    })
}
任超 committed
72 73 74 75 76 77 78
/* 
业务办理-发起业务申请流程
*/
export function startBusinessFlow (data) {
    return request({
        url: '/business/workFlow/startBusinessFlow',
        method: 'post',
任超 committed
79 80
        data,
        showLoading: true
任超 committed
81
    })
82
}
蔡俊立 committed
83 84 85
/* 
已办箱列表查询接口
*/
蔡俊立 committed
86 87 88 89
export function searchTaskDone (data) {
    return request({
        url: '/workBox/search/searchTaskDone',
        method: 'post',
任超 committed
90 91
        data,
        showLoading: true
蔡俊立 committed
92 93
    })
}
蔡俊立 committed
94 95 96 97 98 99 100
/* 
业务办理-选择权利信息-根据条件进行列表查询
*/
export function selectQlxx (data) {
    return request({
        url: '/ywbl/ywsq/selectQlxx',
        method: 'post',
任超 committed
101 102
        data,
        showLoading: true
蔡俊立 committed
103 104
    })
}
蔡俊立 committed
105 106 107 108 109 110 111
/* 
业务办理-选择抵押权信息-根据条件进行列表查询
*/
export function selectDiyaq (data) {
    return request({
        url: '/ywbl/ywsq/selectDiyaq',
        method: 'post',
任超 committed
112 113
        data,
        showLoading: true
蔡俊立 committed
114 115
    })
}
蔡俊立 committed
116 117 118 119 120 121 122
/* 
业务办理-选择查封信息-根据条件进行列表查询
*/
export function selectCfdj (data) {
    return request({
        url: '/ywbl/ywsq/selectCfdj',
        method: 'post',
任超 committed
123 124
        data,
        showLoading: true
蔡俊立 committed
125 126
    })
}
任超 committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
/* 
业务办理-业务申请-添加收藏业务
*/
export function addCollectBiz (bsmSqyw) {
    return request({
        url: '/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw,
        method: 'post'
    })
}
/* 
业务办理-业务申请-添加收藏业务
*/
export function deleteCollectBiz (bsmSqyw) {
    return request({
        url: '/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw,
        method: 'post'
    })
任超 committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157
}
// 国有建设用地使用权/房屋使用权 -选择不动产单元
export function choiceBdcdy (data) {
    return request({
        url: 'business/workFlow/choiceBdcdy',
        method: 'post',
        data,
        showLoading: true
    })
}

// 申请列表删除
export function deleteBdcdy (data) {
    return request({
蔡俊立 committed
158 159 160
        url: 'business/workFlow/deleteBdcdy',
        method: 'post',
        data,
任超 committed
161 162
        showLoading: true
    })
任超 committed
163
}