su
su1124
2024-01-10 6ca45612f4564a741c56c8179e594a72fa79dbc7
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'
  })
}