| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | // 驾驶舱相关接口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  })}
 |