工单详情

This commit is contained in:
2025-11-12 18:14:12 +08:00
parent b940d7a6cc
commit 1a6071194a
8 changed files with 159 additions and 10 deletions

View File

@@ -56,4 +56,14 @@ export const getWorkOrderList = async function({
page, size, park = "", meter = "", tenement = "", status = "", type = "", time = ""
}) {
return await GET(`/noticeFlow/getDisposeList?page=${page}&size=${size}&park=${park}&meter=${meter}&tenement=${tenement}&status=${status}&type=${type}&time=${time}`,);
}
}
// 确认当前流程
export const doNoticeFlow = async function(id) {
return await PUT(`/noticeFlow/${id}/meter/dispose`,);
}
// 确认当前流程
export const getNoticeFlowDetail = async function(id) {
return await GET(`/noticeFlow/${id}/detail`,);
}