1
lkk
2025-06-30 222c1ceea2edd44fb660f384793baf8877bffc20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import request from '@/utils/request'
import Cookies from "js-cookie"
export function indexUrl(query) {
  return request({
   
    url: '/report/jmreport/index',
    headers: {
      hospId:Cookies.get("hospId")
    },
    method: 'get'
  })
}
// 预览
export function view(query) {
  return request({
    
    url: '/report/jmreport/view',
    headers: {
      hospId:Cookies.get("hospId")
    },
    method: 'get'
  })
}