const config = require("../config") module.exports = { // 获取初始互动接口 getInitialInteraction: { url: config.base_new_url + "pheno/initial_interact_options", type: "get", }, // 保存感知结果接口 saveInteractResult: { url: config.base_new_url + "pheno/interact_record", type: "post", }, // 查看报告是否生成 checkReportGenerated: { url: config.base_new_url + "report/check", type: "get", }, // 获取外部感知任务接口 getExternalInteractTasks: { url: config.base_new_url + "pheno/interact_tasks", type: "get", }, // 获取内部感知任务接口 getInternalInteractTasks: { url: config.base_new_url + "pheno/inner_interact_tasks", type: "get", }, // 获取农事任务(zone_id + date,返回当日扁平 fw_tasks) getFwTasks: { url: config.base_new_url + "pheno/fw_tasks", type: "get", }, // 获取农事详细内容(人工 / 机械方案) getFwTaskDetails: { url: config.base_new_url + "pheno/fw_task_details", type: "get", }, // 查询当前农户/农资下的果园信息 getFarms: { url: config.base_new_url + "questionnaire/find_farm_information", type: "get", }, // 查询是否填写农场信息 checkFarmInit: { url: config.base_new_url + "questionnaire/farm_init/get", type: "get", }, // 填写农场信息弹窗更新状态 updateFarmInitStatus: { url: config.base_new_url + "questionnaire/farm_init/set", type: "post", }, // 查询分区照片数量 getZones: { url: config.base_new_url + "questionnaire/zone_images", type: "get", }, // 查询是否填写农事弹窗 checkFwInit: { url: config.base_new_url + "questionnaire/work_init/get", type: "get", }, // 填写农场农事弹窗更新状态 updateFwInitStatus: { url: config.base_new_url + "questionnaire/work_init/set", type: "post", }, }