| 1234567891011121314151617181920 |
- const config = require("../config")
- module.exports = {
- list: {
- url: config.base_dev_url + "image/list?key="+config.mini_key,
- type: "post",
- },
- pointByBlueZones:{
- url: config.base_dev_url + "image/pointByBlueZones",
- type: "post",
- },
- pointByRegionId:{
- url: config.base_dev_url + "image/pointByRegionId?key="+config.mini_key,
- type: "post",
- },
- findSuitabilityByPoint: {
- url: config.base_dev_url + "lz_weather7d/findSuitabilityByPoint/{farmId}/{date}?key="+config.mini_key,
- type: "get",
- },
- }
|