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 }) } 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 } }) }