lkk
2024-11-27 e17811c1d7b1e6318af32a366d23bd586750b6d2
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'
  })
}