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