import { $clue } from './index'; export default { /** * 查询已下发的线索清单 */ getClues(time) { return $clue.get(`feedback/queryYxfList?updateTime=${time}`); }, getClue({ sTime, eTime, pageNum = 1, pageSize = 30 }) { return $clue.get( `clue/fetch?sTime=${sTime}&eTime=${eTime}&pageNum=${pageNum}&pageSize=${pageSize}` ); }, fetchRemoteClue(updateTime) { return $clue.get(`clue/fetch/remote?updateTime=${updateTime}`); } };