赵鹏 1 month ago
parent
commit
4c9f317e11
  1. 34
      src/api/screen/index.ts

34
src/api/screen/index.ts

@ -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…
Cancel
Save