From 3649b8f4991af4178bea0c73e3d4bfc6c2ae4f03 Mon Sep 17 00:00:00 2001 From: 徐旺旺 <11530253@qq.com> Date: 星期一, 29 三月 2021 18:09:29 +0800 Subject: [PATCH] 图层控制新的逻辑 --- src/api/request.js | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/api/request.js b/src/api/request.js index 315f29b..c3ce5bf 100644 --- a/src/api/request.js +++ b/src/api/request.js @@ -1,5 +1,6 @@ import $http from '@utils/axios' import Qs from 'qs' +// import axios from 'axios' export const QueryStoragePlaceListByCompanyAndName = (data = {}) => { return $http.post('/EPInterface/DataService/EPMapService.asmx/QueryStoragePlaceListByCompanyAndName', Qs.stringify(data), { @@ -8,3 +9,13 @@ } }) } +// export const FlueGas = (url) => { +// return $http.get('./static/airQuality.json') +// } +export function FlueGas (data = {}) { + return $http.post('EPInterface/DataService/EPMapService.asmx/ObtainningConInfo', Qs.stringify(data), { + headers: { + 'Content-Type': 'application/json' + } + }) +} -- Gitblit v1.8.0