Commit 33bfff04 authored by 谭俊忻's avatar 谭俊忻

feat: 完成刀模使用履历表的开发

parent ba52b62c
import request from '@/utils/request'
// 刀模板履历日记查询(摸具使用统计表)
export function getListApi(query) {
return request({
url: "/report/tm/toolReport/getList",
method: "get",
params: query,
});
}
// 履历状态字典
export function getResumeStatusApi() {
return request({
url: "/common/enum/getTmToolLogOperationType",
method: "get",
});
}
// 物料维保预警统计
export function getMaterialMaintenanceListApi(query) {
return request({
url: "/report/tm/toolReport/statisticsAll",
method: "get",
params: query,
});
}
// SN维保预警清单10% 30%
export function getSnMaintenanceListApi(query) {
return request({
url: '/mes/tm/tool/list',
method: 'get',
params: query
})
}
// SN生命周期统计
export function getSnLifecycleListApi(query) {
return request({
url: "/report/tm/toolReport/statisticsLifeCycle",
method: "get",
params: query,
});
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment