| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import request from '@/utils/request'
- // 获取本月已完成的SAI数量
- export function getCurrentMonthFinishedSaiCount() {
- return request({
- url: '/eoeg/home/currentMonthFinishedSaiCount',
- method: 'get'
- })
- }
- // 获取本月已完成的TPM数量
- export function getCurrentMonthFinishedTpmCount() {
- return request({
- url: '/eoeg/home/currentMonthFinishedTpmCount',
- method: 'get'
- })
- }
- // 获取进行中的锁开锁关数量
- export function getInProgressLockChangeCount() {
- return request({
- url: '/eoeg/home/inProgressLockChangeCount',
- method: 'get'
- })
- }
- // 获取即将到期或已过期的装置程序清单数量
- export function getExpiringSoonPlantproglistCount() {
- return request({
- url: '/eoeg/home/expiringSoonPlantproglistCount',
- method: 'get'
- })
- }
- // 获取5个班组当年的SAI数量统计
- export function getTeamAnalysis() {
- return request({
- url: '/eoeg/home/teamAnalysis',
- method: 'get'
- })
- }
- // 获取EOEG日常管理首页统计数据
- export function getDashboardData(query) {
- return request({
- url: '/eoeg/home/eoegDailyManagementDashboard',
- method: 'get',
- params: query
- })
- }
|