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

12 lines
234B

  1. const {request} = require("../request/index")
  2. /**
  3. * 上报
  4. * @param {*} data
  5. */
  6. export const applyReport = function (data) {
  7. return request({
  8. url: '/westreamSubmit/report',
  9. method: 'POST',
  10. data
  11. })
  12. }