1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| import request from "@/utils/request";
|
|
| // 删除外部患者表
| export function delExternal(Id) {
| return request({
| url: "/smartor/import/remove/" + Id,
| method: "get",
| });
| }
| // 查询外部患者表
| export function Externallist(data) {
| return request({
| url: "/smartor/import/list",
| method: "post",
| data: data,
| });
| }
| // 修改外部患者表
| export function Externaledit(data) {
| return request({
| url: "/smartor/import/edit",
| method: "post",
| data: data,
| });
| }
| // 患者详情
| export function Externalpatient(userId) {
| return request({
| url: '/smartor/import/getInfo/' + userId,
| method: 'get',
| })
| };
|
|