37 lines
868 B
JavaScript
37 lines
868 B
JavaScript
import {
|
|
https
|
|
} from '@/utils/http.js';
|
|
|
|
export function queryJinriShengchansj(params) { // 获取今日天然气生产数据
|
|
return https({
|
|
url: '/scdt.CxcScdtChart/cxcScdtChart/list',
|
|
method: 'get',
|
|
data: params
|
|
})
|
|
}
|
|
|
|
export function queryJinriTrqShengchansj(params) { // 获取当前日期、今年以来天然气的生产数据 day gas unit
|
|
return https({
|
|
url: '/scdt.CxcScdtChart/cxcScdtChart/getStatisticsData',
|
|
method: 'get',
|
|
data: params
|
|
})
|
|
}
|
|
|
|
|
|
|
|
export function queryYearShengchansj(params) { // 获取今年以来天然气的生产数据
|
|
return https({
|
|
url: '/scdt.CxcScdtChart/cxcScdtChart/getYearStatis',
|
|
method: 'get',
|
|
data: params
|
|
})
|
|
}
|
|
|
|
export function queryJinriYuanyouShengchansj(params) { // 获取今日原油 污油产量
|
|
return https({
|
|
url: '/scdt.cxcscdtwyrb/cxcScdtWyRb/list',
|
|
method: 'get',
|
|
data: params
|
|
})
|
|
} |