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.

31 lines
1006 B

2 months ago
import request from '@/config/axios'
// 数据大屏 API
export const ScreenApi = {
// 查询大屏左侧第一个接口
2 months ago
getLeftFirst: async (params: any) => {
return await request.get({ url: `/system/big-view-data/getLeftFirst`, params })
2 months ago
},
getLeftSecond: async (params: any) => {
return await request.get({ url: `/system/big-view-data/getLeftSecond`, params })
},
2 months ago
getLeftThird: async (params: any) => {
2 months ago
return await request.get({ url: `/system/big-view-data/getLeftThird`, params })
},
2 months ago
getRightFirst: async (params: any) => {
2 months ago
return await request.get({ url: `/system/big-view-data/getRightFirst`, params })
},
2 months ago
getRightSecond: async (params: any) => {
2 months ago
return await request.get({ url: `/system/big-view-data/getRightSecond`, params })
},
2 months ago
getRightThird: async (params: any) => {
2 months ago
return await request.get({ url: `/system/big-view-data/getRightThird`, params })
},
}