import { $fysp } from '../index';
|
|
export default {
|
/**
|
* 获取数据产品场景信息
|
* @param {*} option 数据产品场景信息查询参数
|
* @returns
|
*/
|
fetchProdSceneInfo(option) {
|
return $fysp.post(`dataProd/base/scene/get?`, option).then((res) => {
|
return res.data;
|
});
|
},
|
|
/**
|
* 获取数据产品评估信息
|
* @param {*} option 数据产品评估信息查询参数
|
* @returns
|
*/
|
fetchProdEvaluateInfo(option) {
|
return $fysp.post(`dataProd/base/evaluate/get?`, option).then((res) => {
|
return res.data;
|
});
|
},
|
|
/**
|
* 获取数据产品巡查信息
|
* @param {*} option 数据产品巡查信息查询参数
|
* @returns
|
*/
|
fetchProdInspectionInfo(option) {
|
return $fysp.post(`dataProd/base/inspection/get?`, option).then((res) => {
|
return res.data;
|
});
|
},
|
|
/**
|
* 获取数据产品监控数据信息
|
* @param {*} option 数据产品监控数据信息查询参数
|
* @returns
|
*/
|
fetchProdMonitorDataInfo(option) {
|
return $fysp.post(`dataProd/base/monitorData/get?`, option).then((res) => {
|
return res.data;
|
});
|
},
|
|
};
|