拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
624B

  1. const {request} = require("../request/index")
  2. /**
  3. * 获取省市区树状数据
  4. * @param {*} params
  5. */
  6. export const getCityTree = function(data) {
  7. return request({
  8. url: '/city/queryCityList',
  9. method: "GET",
  10. data
  11. })
  12. }
  13. /**
  14. * 获取河流列表
  15. * @param {*} params
  16. */
  17. export const getFeedbackIndex = function(data) {
  18. return request({
  19. url: '/stream/index',
  20. method: "GET",
  21. data
  22. })
  23. }
  24. /**
  25. * 反馈问题
  26. */
  27. export const feedbackPosition = function (data) {
  28. return request({
  29. url: '/feedback/submit',
  30. method: 'POST',
  31. data
  32. })
  33. }