123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import {ElementColumnsList, ResPage, ResultData} from "@/api/interface/index";
- import { PORT1 } from "@/api/config/servicePort";
- import http from "@/api";
- export const getPlatformList = (params: {}) => {
- return http.post<ResPage<any>>(PORT1 + `/queryasinfo`, params,{ loading: false });
- };
- export const getRgDataList = () => {
- return http.post<ResPage<ElementColumnsList[]>>(PORT1 + `/queryalldataList`);
- };
- export const getDataItemList = (params:{}) => {
- return http.post<ResPage<any>>(PORT1 + `/querydataitem`,params);
- };
- export const getTacRecordList = (params:{}) => {
- return http.post<ResPage<any>>(PORT1 + `/querytactrecordlist`,params);
- };
- export const getYallSensorList = () => {
- return http.post<ResPage<any>>(PORT1 + `/queryallsensorlist`);
- };
- export const getStaitemList = (params:{}) => {
- return http.post<ResPage<any>>(PORT1 + `/querystaitem`,params);
- };
- export const getQuerCertList = (params:{}) => {
- return http.post<ResPage<any>>(PORT1 + `/queryascalinfolist`,params);
- };
- export const getArriveList = (params:{}) => {
- return http.post<ResPage<any>>(PORT1 + `/censusdataarrive`,params);
- };
- export const getCertificateList = () => {
- return http.post<ResPage<any>>(PORT1 + `/censusascalinfomap`);
- };
- export const getFTPList = () => {
- return http.post<ResPage<any>>(PORT1 + `/censusftpstate`);
- };
- export const getQueryAllSysItem = () => {
- return http.post<ResPage<any>>(PORT1 + `/queryallsysitem`);
- };
- export const getBeidouAllSysItem = () => {
- return http.post<ResPage<any>>(PORT1 + `/queryallbeidouitem`);
- };
- export const getFTPAllSysItem = () => {
- return http.post<ResPage<any>>(PORT1 + `/queryallftpitem`);
- };
- export const getMaintainrecordList = (params:{}) => {
- return http.post<ResPage<any>>(PORT1 + `/querymaintainrecord`,params);
- };
|