fix:修改养护通知单点击新增

This commit is contained in:
2025-02-26 14:57:33 +08:00
parent 21f1bea009
commit ca417bd01e
4 changed files with 40 additions and 14 deletions
+9
View File
@@ -43,6 +43,15 @@ export function getMaintenanceNoticeList(params) {
});
}
// 获取工单推测数据
export function getMaintenanceDetail(data) {
return request({
url: "/maintenance-notice/getInferredData",
method: "post",
data,
});
}
// 生成养护通知单
export function addMaintenanceNotice(data) {
return request({
+1 -1
View File
@@ -143,7 +143,7 @@ export function getNoticeList(params) {
//获取大屏工单信息
export function getWorkOrderList(params) {
return request({
url: "/bigscreen/v2/getMaintenanceCount",
url: "/maintenance-notice/getMaintenanceCount",
method: "get",
params,
});