You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
498 B
27 lines
498 B
import request from "@/utils/request"; |
|
|
|
// 查询运行记录 |
|
export function boilerSysList(data) { |
|
return request({ |
|
url: "/reportSteam/list", |
|
method: "post", |
|
data, |
|
}); |
|
} |
|
// 编辑运行记录 |
|
export function boilerSysEdit(data) { |
|
return request({ |
|
url: "/reportSteam/edit", |
|
method: "put", |
|
data, |
|
}); |
|
} |
|
// 导出 |
|
export function boilerSysExport(data) { |
|
return request({ |
|
url: "/reportSteam/export", |
|
method: "post", |
|
data, |
|
responseType: "blob", |
|
}); |
|
}
|
|
|