8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
import {http} from "@/utils/http.js"
|
|
|
|
// 获取患者列表
|
|
export const getPatientList = () => {
|
|
http({
|
|
url: "/patient"
|
|
})
|
|
} |