18 lines
900 B
JavaScript
18 lines
900 B
JavaScript
/**
|
|
* api接口统一管理
|
|
*/
|
|
import {get,post} from '../http'
|
|
|
|
export const addSystemUserApi = data => post('xmgl/systemUser/add', data); //添加账号信息
|
|
export const editSystemUserApi = data => post('xmgl/systemUser/edit', data); //编辑账号信息
|
|
export const deleteSystemUserApi = data => post('xmgl/systemUser/delete', data); //删除账号信息
|
|
export const getSystemUserBySnApi = data => post('xmgl/systemUser/getSystemUserBySn', data); //根据企业或项目SN查找账号列表
|
|
|
|
// 新用户审核
|
|
// 列表
|
|
export const getUserAuditListApi = data => get('xmgl/xzRegistry/page', data); //根据企业或项目SN查找账号列表
|
|
export const userAuditApi = data => post('xmgl/xzRegistry/approval', data); //根据企业或项目SN查找账号列表
|
|
export const userAuditNotPassApi = data => get('xmgl/xzRegistry/page', data); //根据企业或项目SN查找账号列表
|
|
|
|
|