| | |
| | | if (eTime) { |
| | | url += `eTime=${eTime}&`; |
| | | } |
| | | return $clue.get( |
| | | `${url}pageNum=${pageNum}&pageSize=${pageSize}` |
| | | ); |
| | | return $clue.get(`${url}pageNum=${pageNum}&pageSize=${pageSize}`); |
| | | // .then((res) => res.data); |
| | | }, |
| | | |
| | | /** |
| | |
| | | * @returns |
| | | */ |
| | | fetchRemoteClue(updateTime) { |
| | | return $clue.get(`clue/fetch/remote?updateTime=${updateTime}`); |
| | | return $clue |
| | | .get(`clue/fetch/remote?updateTime=${updateTime}`) |
| | | .then((res) => res.data); |
| | | }, |
| | | |
| | | fetchRemoteClueFileUrl(clueId) { |
| | |
| | | * @returns |
| | | */ |
| | | pushClue(clueId) { |
| | | return $clue.post(`clue/push?clueId=${clueId}`); |
| | | return $clue |
| | | .post(`clue/push?clueId=${clueId}`) |
| | | .then((res) => res.data); |
| | | } |
| | | }; |