h5.js 441 B

1234567891011121314151617181920212223242526
  1. import {
  2. request
  3. } from '@zhgkpt/utils'
  4. /**
  5. * 请求首页数据
  6. *
  7. * @url /order/totaldata
  8. * @method get
  9. */
  10. // export function totaldata() {
  11. // return request.get('/order/totaldata')
  12. // }
  13. /**
  14. * 请求总览风险预警
  15. *
  16. * @url /order/totaldata
  17. * @method get
  18. */
  19. //获取警情动态-报警信息列表
  20. export function getGcjzjcxx(params) {
  21. return request({
  22. url: '/system/gcjzjcxxcj/detail',
  23. methods: 'get',
  24. params
  25. })
  26. }