28 lines
882 B
JavaScript
28 lines
882 B
JavaScript
import http from '../utils/http'
|
|
|
|
// 获取侧边菜单栏
|
|
export const apiGetFlowList = params => {
|
|
return http({url: '/lz_management/user/lzflowmanager/list', method: 'get', params})
|
|
}
|
|
|
|
export const apiFlowInfo = params => {
|
|
return http({url: `/lz_management/user/lzflowmanager/info/${params}`, method: 'post'})
|
|
}
|
|
|
|
// 菜单管理列表
|
|
export const apiDepartmentMenuList = params => {
|
|
return http({url: '/lz_management/user/lzflowmanager/menu/list', method: 'get', params})
|
|
}
|
|
|
|
export const apiGetFlowInfo = params => {
|
|
return http({url: `/lz_management/user/lzflowmanager/get/flowInfo/${params}`, method: 'post'})
|
|
}
|
|
|
|
export const getFlow = (data) => {
|
|
return http({url: `/lz_management/user/lzflowmanager/get/flow`, method: 'post',data})
|
|
}
|
|
|
|
export const saveFlow = (data) => {
|
|
return http({url: `/lz_management/user/lzflowmanager/save/flow`, method: 'post', data})
|
|
}
|