liuyg
2021-08-10 17bed3a7f7e90b23afb5def223fd7a285ff6cc24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import request from '@/router/axios';
 
export const getList = () => {
  return request({
    url: '/api/blade-user/getUserRegisterStatisticsData',
    method: 'get'
  })
}
 
export const getSevenDaty = () => {
  return request({
    url: '/api/alarm/alarm/countAlarm',
    method: 'get'
  })
}