// 驾驶舱相关接口 import request from '@/utils/request' // 获取驾驶舱总览 export function getOverview(query) { return request({ url: '/core/cockpit/app/overview', method: 'get', params: query }) } // 获取基础信息 export function getAllbaseInfo(query) { return request({ url: '/core/cockpit/app/baseInfo', method: 'get', params: query }) } // 获取履职情况信息 export function getAllresumption(query) { return request({ url: '/core/cockpit/app/ranking/resumption', method: 'get', params: query }) } // 获取综合履职数据情况 export function getSyntheticResumption(query) { return request({ url: '/core/cockpit/app/synthetic/resumption', method: 'get', params: query }) } // 获取综合问题整改情况 export function getSyntheticQuestion(query) { return request({ url: '/core/cockpit/app/synthetic/question', method: 'get', params: query }) } // 安全检查 export function safetycheck(query) { return request({ url: '/core/cockpit/app/synthetic/safetycheck', method: 'get', params: query }) } // 其他 export function getotherHandler(query) { return request({ url: '/core/cockpit/app/synthetic/other', method: 'get', params: query }) }