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

16 lines
284 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
})
}