import req from '@/request.js' const portal = window.context.portal export default { //分页查询 loadClockInfo(data, cb) { req.post(portal + `/manager/clock/query`, data).then(res => { res && cb(res.data) }) } }