| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import axios from 'axios';
- import { Pagination } from '@/types/global';
- export interface User {
- userId: string;
- userName: string;
- nickName: string;
- email: string;
- phoneNumber: string;
- dept: any;
- resources: any;
- knowledges: any;
- dialogs: any;
- createTime: string;
- status: string;
- }
- export interface Organization {
- deptId: string;
- deptName: string;
- email: string;
- leader: string;
- phone: string;
- orderNum: string;
- parentId: string;
- status: string;
- address: string;
- parentName: string;
- }
- export interface Resource {
- menuId: string;
- createTime: string;
- updateTime: string;
- menuName: string;
- component: string;
- description: string;
- icon: string;
- orderNum: string;
- target: string;
- parentId: string;
- parentName: string;
- children: any;
- syesourcetype: string;
- status: string;
- path: string;
- perms: string;
- menuType: string;
- }
- export interface Knowledge {
- id: string;
- createTime: string;
- updateTime: string;
- name: string;
- }
- export interface Result<T> {
- code: number;
- msg: string;
- rows: T;
- total: number;
- }
- export function UserList(params: Pagination) {
- return axios.get<Result<User[]>>('/base/system/user/list', { params });
- }
- export function Userstatus(userID, status) {
- return axios.put('/base/system/user/changeStatus', {
- userId: userID,
- status: status,
- });
- }
- export function UserChangePwd(userId) {
- return axios.put('/base/system/user/profile/updatePwd', { userId: userId });
- }
- export function UserEdit(user) {
- return axios.put('/base/system/user', { user });
- }
- export function UserAdd(user) {
- return axios.post('/base/system/user', { user });
- }
- export function UserDelete(userId) {
- return axios.delete('/base/system/user/' + userId);
- }
- export function OrganizationList(key: string) {
- return axios.post<Result<Organization[]>>('/base/system/dept/list', {
- deptName: key,
- });
- }
- export function OrganizationAdd(organization) {
- return axios.post('/base/system/dept', { organization });
- }
- export function OrganizationDelete(id) {
- return axios.delete('/base/system/dept/' + id);
- }
- export function OrganizationUpdate(organization) {
- return axios.put('/base/system/dept', { organization });
- }
- export function OrganizationById(id) {
- return axios.get<Result<Organization>>('/base/system/dept/' + id);
- }
- export function ResourceList(key: string) {
- return axios.get<Result<Resource[]>>('/base/system/menu/treeselect');
- }
- export function ResourceAdd(resource) {
- return axios.post('/base/system/menu', { resource });
- }
- export function ResourceDelete(id) {
- return axios.delete('/base/system/menu/' + id);
- }
- export function ResourceUpdate(resource) {
- return axios.put('/base/system/menu', { resource });
- }
- export function ResourceById(id) {
- return axios.get<Result<Resource>>('/base/system/menu/' + id);
- }
- export function KnowledgeList() {
- return axios.get<Result<Knowledge>>('/base/system/knowledge/list');
- }
- export function DialogList() {
- return axios.get<Result<Knowledge>>('/base/system/dialog/list');
- }
|