1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| 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}`);
| }
| };
|
|