08/19设计派单和招标管理

This commit is contained in:
dhr
2025-08-19 20:05:28 +08:00
parent 53309746f5
commit 15742dd235
10 changed files with 1477 additions and 1 deletions

63
src/api/patch/index.ts Normal file
View File

@ -0,0 +1,63 @@
import request from '@/utils/request';
import { AxiosPromise } from 'axios';
import { MasterVO, MasterForm, MasterQuery } from '@/api/patch/master/types';
/**
* 查询派单列表
* @param query
* @returns {*}
*/
export const listMaster = (query?: MasterQuery): AxiosPromise<MasterVO[]> => {
return request({
url: '/patch/list',
method: 'get',
params: query
});
};
/**
* 查询派单详细
* @param id
*/
export const getMaster = (id: string | number): AxiosPromise<MasterVO> => {
return request({
url: '/patch/' + id,
method: 'get'
});
};
/**
* 新增派单
* @param data
*/
export const addMaster = (data: MasterForm) => {
return request({
url: '/patch/',
method: 'post',
data: data
});
};
/**
* 修改派单
* @param data
*/
export const updateMaster = (data: MasterForm) => {
return request({
url: '/patch/',
method: 'put',
data: data
});
};
/**
* 删除派单
* @param id
*/
export const delMaster = (id: string | number | Array<string | number>) => {
return request({
url: '/patch/' + id,
method: 'delete'
});
};

141
src/api/patch/types.ts Normal file
View File

@ -0,0 +1,141 @@
export interface MasterVO {
/**
* 主键ID
*/
id: string | number;
/**
* 项目ID
*/
projectId: string | number;
/**
* 任务名称
*/
taskName: string;
/**
* 任务描述
*/
describe: string;
/**
* 计划完成时间
*/
pcd: string;
/**
* 实际完成时间
*/
act: string;
/**
* 完成进度
*/
completionProgress: string;
/**
* 任务状态
*/
taskStatus: string;
/**
* 备注
*/
remark: string;
}
export interface MasterForm extends BaseEntity {
/**
* 主键ID
*/
id?: string | number;
/**
* 项目ID
*/
projectId?: string | number;
/**
* 任务名称
*/
taskName?: string;
/**
* 任务描述
*/
describe?: string;
/**
* 计划完成时间
*/
pcd?: string;
/**
* 实际完成时间
*/
act?: string;
/**
* 完成进度
*/
completionProgress?: string;
/**
* 任务状态
*/
taskStatus?: string;
/**
* 备注
*/
remark?: string;
}
export interface MasterQuery extends PageQuery {
/**
* 项目ID
*/
projectId?: string | number;
/**
* 任务名称
*/
taskName?: string;
/**
* 任务描述
*/
describe?: string;
/**
* 计划完成时间
*/
pcd?: string;
/**
* 实际完成时间
*/
act?: string;
/**
* 完成进度
*/
completionProgress?: string;
/**
* 任务状态
*/
taskStatus?: string;
/**
* 日期范围参数
*/
params?: any;
}