region.js 265 B

123456789101112131415
  1. //采样点接口
  2. const config = require("../config")
  3. module.exports = {
  4. list: {
  5. url: config.base_url + "region/list",
  6. type: "post",
  7. },
  8. listArea: {
  9. url: config.base_url + "temp_blue_region/list",
  10. type: "get",
  11. },
  12. }