Blame view

src/api/ywbl.js 1.18 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 32 33
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
34
export function selectBdcdy (data) {
35
    return request({
jiaozeping@pashanhoo.com committed
36
        url: '/ywbl/ywsq/selectBdcdy',
37 38 39 40
        method: 'post',
        data
    })
}
liangyifan committed
41 42 43 44 45 46 47 48
// 待办箱列表查询接口
export function searchTaskToDo (data) {
    return request({
        url: '/business/todoBox/searchTaskToDo',
        method: 'post',
        data
    })
}
49

任超 committed
50 51 52 53 54 55 56 57 58
/* 
业务办理-发起业务申请流程
*/
export function startBusinessFlow (data) {
    return request({
        url: '/business/workFlow/startBusinessFlow',
        method: 'post',
        data
    })
59
}