1234567891011121314151617181920212223 |
- // 预警首页
- const config = require("../config")
- module.exports = {
- fetchWarningLayer: {
- url: config.base_url + "cfg/get",
- type: "post",
- },
- fetchAreaDistrict: {
- url: config.base_url + "poi/districtById",
- type: "get",
- },
- fetchFarmLog: {
- url: config.base_url + "temp_blue_region/vrOrchardContent",
- type: "post",
- },
-
- transformLocation: {
- url: "/ws/geocoder/v1",
- type: "get"
- },
- }
|