font-end/src/api/modular/largeScreen/productionCommandCenterManage.js

49 lines
818 B
JavaScript
Raw Normal View History

2025-09-05 23:56:34 +08:00
import { axios } from '@/utils/request'
/**
* 查询访问日志
*
* @author sunwenlin
* @date 2025/9/5 18:00
*/
export function productionCommandCenterPage (parameter) {
return axios({
url: '/productionCommandCenter/page',
method: 'get',
params: parameter
})
}
2025-09-20 16:16:06 +08:00
const commonParams = {
charset: 'utf-8',
archived: 0
}
/**
* 炉温
*/
export function getFurnaceTemperature (parameter) {
return axios({
url: '/HistAtTime',
method: 'post',
params: {
...parameter,
...commonParams
}
})
}
/**
* 功率因数每月和每小时功率因数用这个平均值调整时间
*/
export function getHistAggreData (parameter) {
return axios({
url: '/HistAggreData',
method: 'get',
params: {
...parameter,
...commonParams
}
})
}