| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import request from '@/utils/request'
- // 查询日常管理EOEG列表
- export function listEoeg_daily_management(query) {
- return request({
- url: '/plant/eoeg-daily-management/list',
- method: 'get',
- params: query
- })
- }
- // 查询日常管理EOEG详细
- export function getEoeg_daily_management(id) {
- return request({
- url: '/plant/eoeg-daily-management/' + id,
- method: 'get'
- })
- }
- // 新增日常管理EOEG
- export function addEoeg_daily_management(data) {
- return request({
- url: '/plant/eoeg-daily-management',
- method: 'post',
- data: data
- })
- }
- // 修改日常管理EOEG
- export function updateEoeg_daily_management(data) {
- return request({
- url: '/plant/eoeg-daily-management',
- method: 'put',
- data: data
- })
- }
- // 删除日常管理EOEG
- export function delEoeg_daily_management(id) {
- return request({
- url: '/plant/eoeg-daily-management/' + id,
- method: 'delete'
- })
- }
- // 导出日常管理EOEG
- export function exportEoeg_daily_management(query) {
- return request({
- url: '/plant/eoeg-daily-management/export',
- method: 'get',
- params: query
- })
- }
- // 下载模板
- export function importTemplate() {
- return request({
- url: '/plant/eoeg-daily-management/importTemplate',
- method: 'get'
- })
- }
- // 获取EOEG日常管理首页统计数据
- export function getDashboardData(query) {
- return request({
- url: '/plant/eoeg-daily-management/dashboard',
- method: 'get',
- params: query
- })
- }
|