feat: 新增基础树图

This commit is contained in:
奔跑的面条
2022-09-26 21:18:01 +08:00
parent 62aec195ea
commit 0d1abd00a1
10 changed files with 220 additions and 17 deletions
+7 -1
View File
@@ -16,6 +16,7 @@ export const heatMapUrl = '/mock/heatMapData'
export const scatterBasicUrl = '/mock/scatterBasic'
export const mapUrl = '/mock/map'
export const wordCloudUrl = '/mock/wordCloud'
export const treemapUrl = '/mock/treemap'
const mockObject: MockMethod[] = [
{
@@ -84,7 +85,12 @@ const mockObject: MockMethod[] = [
url: wordCloudUrl,
method: RequestHttpEnum.GET,
response: () => test.fetchWordCloud
}
},
{
url: treemapUrl,
method: RequestHttpEnum.GET,
response: () => test.fetchTreemap
},
]
export default mockObject