初始化
This commit is contained in:
120
api/oa/task-count/index.ts
Normal file
120
api/oa/task-count/index.ts
Normal file
@@ -0,0 +1,120 @@
|
||||
import request from '@/utils/request';
|
||||
import type { ApiResult, PageResult } from '@/api';
|
||||
import type { TaskCount, TaskCountParam } from './model/index';
|
||||
import { TabsParam } from '@/api/tabs';
|
||||
import { MODULES_API_URL } from '@/config';
|
||||
|
||||
/**
|
||||
* 分页查询统计
|
||||
*/
|
||||
export async function pageTaskCount(params: TaskCountParam) {
|
||||
const res = await request.get<ApiResult<PageResult<TaskCount>>>(
|
||||
MODULES_API_URL + '/oa/task-count/page',
|
||||
{
|
||||
params
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询统计列表
|
||||
*/
|
||||
export async function listTaskCount(params?: TaskCountParam) {
|
||||
const res = await request.get<ApiResult<TaskCount[]>>(
|
||||
MODULES_API_URL + '/oa/task-count',
|
||||
{
|
||||
params
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0 && res.data.data) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id查询统计
|
||||
*/
|
||||
export async function getTaskCount(id: number) {
|
||||
const res = await request.get<ApiResult<TaskCount>>(
|
||||
MODULES_API_URL + '/oa/task-count/' + id
|
||||
);
|
||||
if (res.data.code === 0 && res.data.data) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加统计
|
||||
*/
|
||||
export async function addTaskCount(data: TaskCount) {
|
||||
const res = await request.post<ApiResult<unknown>>(
|
||||
MODULES_API_URL + '/oa/task-count',
|
||||
data
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改统计
|
||||
*/
|
||||
export async function updateTaskCount(data: TaskCount) {
|
||||
const res = await request.put<ApiResult<unknown>>(
|
||||
MODULES_API_URL + '/oa/task-count',
|
||||
data
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除统计
|
||||
*/
|
||||
export async function removeTaskCount(id?: number) {
|
||||
const res = await request.delete<ApiResult<unknown>>(
|
||||
MODULES_API_URL + '/oa/task-count/' + id
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除统计
|
||||
*/
|
||||
export async function removeBatchTaskCount(data: (number | undefined)[]) {
|
||||
const res = await request.delete<ApiResult<unknown>>(
|
||||
MODULES_API_URL + '/oa/task-count/batch',
|
||||
{
|
||||
data
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
export async function getCount(params?: TabsParam) {
|
||||
const res = await request.get<ApiResult<TabsParam>>(
|
||||
MODULES_API_URL + '/oa/task-count/count',
|
||||
{
|
||||
params
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0 && res.data.data) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
32
api/oa/task-count/model/index.ts
Normal file
32
api/oa/task-count/model/index.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 统计
|
||||
*/
|
||||
export interface TaskCount {
|
||||
// 统计id
|
||||
taskCountId?: number;
|
||||
userId?: number;
|
||||
nickname?: string;
|
||||
avatar?: string;
|
||||
phone?: string;
|
||||
pending?: number;
|
||||
unused?: number;
|
||||
today?: number;
|
||||
month?: number;
|
||||
year?: number;
|
||||
total?: number;
|
||||
commander?: number;
|
||||
createTime?: string;
|
||||
updateTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 统计搜索条件
|
||||
*/
|
||||
export interface TaskCountParam extends PageParam {
|
||||
taskCountId?: number;
|
||||
userId?: number;
|
||||
roleId?: number;
|
||||
roleCode?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user