1
lkk
2025-04-29 cb9989c7167856993a02238fde5a0ddd37c2c0cd
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'
  })
}