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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
| import request from '@/utils/request'
|
| // 查询体检心电图管理列表
| export function listPicture(query) {
| return request({
| url: '/picture/picture/list',
| method: 'get',
| params: query
| })
| }
|
| // 查询体检客户心电图列表(非自带)
| export function getListPicture(query) {
| return request({
| url: '/picture/picture/getList',
| method: 'get',
| params: query
| })
| }
|
|
|
| // 查询体检心电图管理详细
| export function getPicture(id) {
| return request({
| url: '/picture/picture/' + id,
| method: 'get'
| })
| }
|
| // 新增体检心电图管理
| export function addPicture(data) {
| return request({
| url: '/picture/picture',
| method: 'post',
| data: data
| })
| }
|
| // 修改体检心电图管理
| export function updatePicture(data) {
| return request({
| url: '/picture/picture',
| method: 'put',
| data: data
| })
| }
|
| // 删除体检心电图管理
| export function delPicture(id) {
| return request({
| url: '/picture/picture/' + id,
| method: 'delete'
| })
| }
|
| // 影像检查列表(骨密度和心电图)
| export function getYxJcList(query) {
| return request({
| url: '/picture/picture/getYxJcList',
| method: 'get',
| params: query
| })
| }
|
| // 提交影像检查骨密度心电图结果接口
| export function addYxJcXx(query) {
| return request({
| url: '/picture/picture/addYxJcXx',
| method: 'get',
| params: query
| })
| }
|
| // 影像检查骨密度心电图页面点击体检人员展示体检项目接口
| export function getYxJcXx(tjNumber) {
| return request({
| url: '/picture/picture/getYxJcXx',
| method: 'get',
| params: {
| tjNumber: tjNumber
| }
| })
| }
|
| // 获取影像检查骨密度心电图结果接口
| export function getYxJcXxJg(tjNumber,proId) {
| return request({
| url: '/picture/picture/getYxJcXxJg',
| method: 'get',
| params: {
| tjNumber: tjNumber,
| proId:proId
| }
| })
| }
|
|