1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||||
|
import request from '@/config/axios' |
||||||
|
|
||||||
|
|
||||||
|
// 数据大屏 API
|
||||||
|
export const ScreenApi = { |
||||||
|
// 查询大屏左侧第一个接口
|
||||||
|
getLifeFirst: async (params: any) => { |
||||||
|
return await request.get({ url: `/system/big-view-data/getLifeFirst`, params }) |
||||||
|
}, |
||||||
|
|
||||||
|
getLeftSecond: async (params: any) => { |
||||||
|
return await request.get({ url: `/system/big-view-data/getLeftSecond`, params }) |
||||||
|
}, |
||||||
|
|
||||||
|
getLeftThird: async (params: any) => { |
||||||
|
return await request.get({ url: `/system/big-view-data/getLeftThird`, params }) |
||||||
|
}, |
||||||
|
|
||||||
|
getRightFirst: async (params: any) => { |
||||||
|
return await request.get({ url: `/system/big-view-data/getRightFirst`, params }) |
||||||
|
}, |
||||||
|
|
||||||
|
|
||||||
|
getRightSecond: async (params: any) => { |
||||||
|
return await request.get({ url: `/system/big-view-data/getRightSecond`, params }) |
||||||
|
}, |
||||||
|
|
||||||
|
getRightThird: async (params: any) => { |
||||||
|
return await request.get({ url: `/system/big-view-data/getRightThird`, params }) |
||||||
|
}, |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue