Blame view

src/api/dbx.js 838 Bytes
zhaoqian committed
1 2
import request from '@/plugin/axios'
/**
zhaoqian committed
3
 * 待办箱综合查询
zhaoqian committed
4 5 6
 */
export function getDbxList(data) {
    return request({
7
        url: '/qj/workarea/getDbx',
zhaoqian committed
8 9 10
        method: 'post',
        data : data,
    })
zhaoqian committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
}

/**
 * 已办箱综合查询
 */
export function getYbxList(data) {
    return request({
        url: '/workflow/queryWorkflowProcess',
        method: 'post',
        data : data,
    })
}

/**
 * 通过名称获取字典
 */
export function queryByBusinessId(businessId) {
    return request({
        url: '/system/basiccommon/query/'+businessId,
        method: 'get',
    })
宋力 committed
32 33 34 35 36 37 38 39 40 41 42
}

/**
 * 通知公告
 */
export function getTzggList(data,params) {
    return request({
        url: `/system/tzgg/getTzggPageList?pageNo=${params.pageNo}&pageSize=${params.pageSize}`,
        method: 'post',
        data : data,
    })
zhaoqian committed
43
}