import request from '@/router/axios' // 考试列表 export const getExamList = (params) => { return request({ url: '/api/exampaper/getList', method: 'get', apiKey: true, params }) } // 考试须知 export const getDpDetail = () => { return request({ url: '/api/exam/examinationNote/getDpDetail', method: 'get', apiKey: true, }) } // 签到情况 export const getSignSituationPie = (params) => { return request({ url: '/api/signInRecords/signSituation/pie', method: 'get', apiKey: true, params }) } // 实时监控数据 export const getSignSituationBar = (params) => { return request({ url: '/api/signInRecords/signSituation/bar', method: 'get', apiKey: true, params }) } // 签到列表 export const getSignSituationList = (params) => { return request({ url: '/api/signInRecords/signSituation/list', method: 'get', apiKey: true, params }) } // 考试动态 export const getExamScoreList = (params) => { return request({ url: '/api/examScore/getList', method: 'get', apiKey: true, params }) } // 获取最近一次考试的日期 export const getLatestExam = (params) => { return request({ url: '/api/exampaper/getLatest', method: 'get', apiKey: true, params }) }