hotRerunApi.js 349 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import axiosInstance from "@/Request/PublicAxiosInstance" class HotRerunApi { getResult(data) { return axiosInstance.request( { method: 'GET', url: `/heatMap/reCall`, params: data } ) } } const hotRerunApi = new HotRerunApi() export default hotRerunApi