拓恒河湖长制全民护河平台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.

16 lines
357B

  1. const {request} = require("../request/index")
  2. export const api_westreamSuggest = function (data) {
  3. return request({
  4. url: '/westreamSuggest/add',
  5. method: 'POST',
  6. data
  7. })
  8. }
  9. export const api_getUserInfo = function (data) {
  10. return request({
  11. url: '/westreamUser/userInfo',
  12. method: 'GET',
  13. data
  14. })
  15. }