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