zhgdyun/src/assets/js/api/account.js

21 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-06-08 14:51:11 +08:00
/**
* api接口统一管理
*/
import {get,post} from '../http'
2022-06-08 14:51:11 +08:00
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查找账号列表
2024-03-26 19:03:04 +08:00
// 审核
export const userAuditApi = data => post('xmgl/xzRegistry/approval', data); //根据企业或项目SN查找账号列表
2024-03-26 19:03:04 +08:00
// 删除
export const userDeleteApi = data => post('xmgl/xzRegistry/delete', data); //根据企业或项目SN查找账号列表
// 用户管理列表
export const getUserManagerApi = data => post('xmgl/systemUser/getTenantListBySn', data); //根据企业或项目SN查找账号列表
2022-06-08 14:51:11 +08:00