123456789101112131415161718192021222324 |
- const config = require("../config")
- module.exports = {
- getOrganExplain: {
- url: config.base_url + "sys_organ_explain/get",
- type: "get",
- },
- listOrganExplain: {
- url: config.base_url + "sys_organ_explain/list",
- type: "get",
- },
- gardenData: {
- url: config.base_url + "home/garden/list",
- type: "get",
- },
- updateGarden: {
- url: config.base_url + "home/garden/update/{gardenId}",
- type: "get",
- },
- }
|