报表2页面
This commit is contained in:
38
src/api/report/benchmarking.js
Normal file
38
src/api/report/benchmarking.js
Normal file
@@ -0,0 +1,38 @@
|
||||
// 对标报表的接口
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 稼动率对标
|
||||
export function utilzationComparePage(data) {
|
||||
return request({
|
||||
url: '/ip/utilzation-compare/page',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
// 稼动率对标导出
|
||||
export function utilzationCompareExport(data) {
|
||||
return request({
|
||||
url: '/ip/utilzation-compare/export-excel',
|
||||
method: 'post',
|
||||
responseType: 'blob',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 芯片OEE对标
|
||||
export function chipoeeComparePage(data) {
|
||||
return request({
|
||||
url: '/ip/chipoee-compare/page',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
// 芯片OEE对标导出
|
||||
export function chipoeeCompareExport(data) {
|
||||
return request({
|
||||
url: '/ip/chipoee-compare/export-excel',
|
||||
method: 'post',
|
||||
responseType: 'blob',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user