1
lkk
2025-04-27 1bff9afb2dfda9824c3956c4a491a1b2261ad306
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import request from '@/utils/request'
export function indexUrl(query) {
  return request({
    url: '/report/jmreport/index',
    method: 'get'
  })
}
// 预览
export function view(query) {
  return request({
    url: '/report/jmreport/view',
    method: 'get'
  })
}