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
494 B
27 lines
494 B
import request from "@/utils/request"; |
|
|
|
// 查询运行记录 |
|
export function reportSysList(data) { |
|
return request({ |
|
url: "/reportSys/list", |
|
method: "post", |
|
data, |
|
}); |
|
} |
|
// 编辑运行记录 |
|
export function reportSysEdit(data) { |
|
return request({ |
|
url: "/reportSys/edit", |
|
method: "put", |
|
data, |
|
}); |
|
} |
|
// 导出 |
|
export function reportSysExport(data) { |
|
return request({ |
|
url: "/reportSys/export", |
|
method: "post", |
|
data, |
|
responseType: 'blob', |
|
}); |
|
}
|
|
|