OfficeApp/api/oaUser.js

28 lines
555 B
JavaScript
Raw Normal View History

2023-07-19 11:58:18 +08:00
import oahttp from "@/utils/oahttp.js";
/**
* 获取代办事项 已处理事项
*/
export const loginAccount = (data) => oahttp.post('/login/account', data, { noAuth: true })
/**
2023-07-20 10:22:50 +08:00
* cesi
2023-07-19 11:58:18 +08:00
*/
export const test = (data) => oahttp.post('/index/config', data, { noAuth: true })
2023-07-20 10:22:50 +08:00
/**
* 个人中心
*/
export const userCenter = (data) => oahttp.get('/user/center', data)
/**
* 个人信息
*/
export const userInfo = (data) => oahttp.get('/user/info', data)
2023-07-27 19:04:57 +08:00
/**
* 新增人员
*/
export const loginAdd = (data) => oahttp.post('/login/add', data)