38 lines
800 B
JavaScript
38 lines
800 B
JavaScript
// 对标报表的接口
|
|
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
|
|
})
|
|
} |