Merge branch 'dev-wordcloud' into dev-commet

This commit is contained in:
tnt group
2022-09-25 22:06:29 +08:00
12 changed files with 653 additions and 238 deletions
+8
View File
@@ -15,6 +15,7 @@ export const radarUrl = '/mock/radarData'
export const heatMapUrl = '/mock/heatMapData'
export const scatterBasicUrl = '/mock/scatterBasic'
export const mapUrl = '/mock/map'
export const wordCloudUrl = '/mock/wordCloud'
const mockObject: MockMethod[] = [
{
@@ -75,10 +76,17 @@ const mockObject: MockMethod[] = [
response: () => test.fetchScatterBasic
},
{
<<<<<<< HEAD
url: mapUrl,
method: RequestHttpEnum.GET,
response: () => test.fetchMap
},
=======
url: wordCloudUrl,
method: RequestHttpEnum.GET,
response: () => test.fetchWordCloud
}
>>>>>>> dev-wordcloud
]
export default mockObject