const config = require("../config") module.exports = { fetchSpecieList: { url: config.base_dev_url + "container/specieList", type: "get", }, fetchPhenologyList: { url: config.base_dev_url + "container/phenology/select/{containerId}", type: "get", }, saveFarm: { url: config.base_dev_url + "v2/farm/createFarm", type: "post", }, updateFarm: { url: config.base_dev_url + "v2/farm/updateFarm", type: "post", }, userFarmSelectOption: { url: config.base_dev_url + "v2/farm/userFarmSelectOption", type: "get", }, fruitsTypeItemList: { url: config.base_dev_url + "mini_fruits_type_item/list/{parentId}", type: "get", }, getFarmDetail: { url: config.base_dev_url + "v2/farm/getFarmDetail", type: "get", }, listByIds: { url: config.base_dev_url + "image/listByIds", type: "post", }, getFarmWorkLib: { url: config.base_dev_url + "z_farm_work_lib/get", type: "get", }, //删除农场 deleteFarm: { url: config.base_dev_url + "v2/farm/deleteFarm", type: "get", }, //查询单个农事编排信息 getFarmWorkArrangeDetail: { url: config.base_dev_url + "container_farm_work_arrange/get", type: "get", }, // 查有图片日期 findHasImagesDate: { url: config.base_dev_url + "image_v2/findHasImagesDate", type: "get", }, // 获取图片列表 getImageInfo: { url: config.base_dev_url + "image_v2/images/queryByDate", type: "get", }, // 获取农资店列表 getStoreList: { url: config.base_dev_url + "z_agricultural_store/page/{page}/{limit}", type: "get", }, // 报价 getPriceList: { url: config.base_dev_url + "agricultural_store_pesticide_fertilizer/findBySchemeAndPesticides", type: "post", }, updateBatchByScheme: { url: config.base_dev_url + "agricultural_store_pesticide_fertilizer/updateBatchByScheme", type: "post", }, // 生育期 listByPhenologyId: { url: config.base_dev_url + "container_reproductive/listByPhenologyId", type: "get", }, }