生产计划

This commit is contained in:
Vergil
2020-03-26 09:53:13 +08:00
parent 6480d06063
commit d3b17f4a2a
3 changed files with 42 additions and 25 deletions

View File

@@ -110,3 +110,21 @@ export function submitAdd(name) {
}
})
}
// 查询二级模块分给那些角色
export function searchJS(name) {
return request({
url: '',
method: 'post',
data: {
UserID: state.state.user.id,
ModularID: router.currentRoute.path,
type: '3',
name: ` select 角色功能,title from
基础表_模块信息 inner join 基础表_角色模块信息 on 基础表_角色模块信息.id = 基础表_模块信息.id
inner join 菜单系统模块_项目角色 on 基础表_角色模块信息.角色编号 = 菜单系统模块_项目角色.角色编号
order by title`,
param: `模块名称=${name}`
}
})
}