qx
2025-04-09 93a6f70b8eb631c6c1faab8f9e8a734669e49e6e
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'
  })
}