1
lkk
9 天以前 5b58a2c07e2317b2dc8f60c6bfe83dd0774896bc
src/api/jmreport/jimu.js
@@ -1,14 +1,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'
  })
}