import request from '@/router/axios'; export const getListhonor = (current, size, params, cardid) => { return request({ url: '/api/honor/list', method: 'get', params: { ...params, current, size, cardid } }) } export const addhonor = (row) => { return request({ url: '/api/honor/save', method: 'post', data: row }) } export const getLisperformance = (current, size, params, securityid) => { return request({ url: '/api/performance/page', method: 'get', params: { ...params, current, size, securityid } }) } export const getLisperexamScore = (current, size, params, userId) => { return request({ url: '/api/examScore/page', method: 'get', params: { ...params, current, size, userId } }) } export const getLispertrain = (current, size, params, userId) => { return request({ url: '/api/trainingRegistration/page', method: 'get', params: { ...params, current, size, userId } }) } export const getLisperdispatch = (current, size, params, userIds) => { return request({ url: '/api/dispatcher/page', method: 'get', params: { ...params, current, size, userIds } }) } export const getER = (securityNumber) => { return request({ url: '/api/qrCode/getQrCodeBase64', method: 'get', params: { securityNumber } }) }