You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
223 B
14 lines
223 B
2 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
export const HomeApi = {
|
||
|
/**
|
||
|
* 获取饼图相关的数据
|
||
|
*/
|
||
|
getPieData: (params) => {
|
||
|
return request({
|
||
|
url: '/system/home/appCount1',
|
||
|
method: 'GET',
|
||
|
params
|
||
|
})
|
||
|
}
|
||
|
}
|