1
wwl
2 天以前 2ee7a81c2eb0df1fc473da6dbbaa13df662967c5
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import request from '@/utils/request'
 
// 查询体检项目列表
export function listProject(query) {
  return request({
    url: '/hosp/project/list',
    method: 'get',
    params: query
  })
}
// 查询体检项目列表(树形结构)
export function ProjectTree(data) {
  return request({
    url: '/hosp/project/getDxList',
    method: 'get',
    params: data
  })
}
 
// 查询体检项目列表(树形结构)
export function getlist(data) {
  return request({
    url: '/hosp/project/getlist',
    method: 'get',
    params: data
  })
}
 
// 查询体检项目列表(树形结构)
export function getAllChildListById(data) {
  return request({
    url: 'hosp/project/getAllChildListById',
    method: 'get',
    params: data
  })
}
 
// 查询体检项目详细
export function getProject(proId) {
  return request({
    url: '/hosp/project/' + proId,
    method: 'get'
  })
}
 
// 新增体检项目
export function addProject(data) {
  return request({
    url: '/hosp/project',
    method: 'post',
    data: data
  })
}
 
// 修改体检项目
export function updateProject(data) {
  return request({
    url: '/hosp/project',
    method: 'put',
    data: data
  })
}
 
// 删除体检项目
export function delProject(proId) {
  return request({
    url: '/hosp/project/' + proId,
    method: 'delete'
  })
}
 
// 查询部门下拉树结构
export function deptTree() {
  return request({
    url: 'system/dept/deptTree',
    method: 'get'
  })
}
 
// 查询部门下拉树结构
export function deptTree111() {
  return request({
    url: 'system/dept/deptTree111',
    method: 'get'
  })
}
 
 
// 新增体检项目
export function getChartByDeptId(query) {
  return request({
    url: '/home/page/getChartByDeptId',
    method: 'get',
    params: query
  })
}
// 查询lis数据库项目信息接口
export function getTjHyBgList(query) {
  return request({
    url: '/sqlserver/getdata/getTjHyBgList',
    method: 'get',
    params: query
  })
}
 
// 查询体检项目详细
export function getInfoByProId(proId) {
  return request({
    url: 'hosp/project/getInfoByProId',
    method: 'get',
    params: {proId:proId}
  })
}
 
 
// 查询体检项目列表(树形结构)
export function getKjTjAdviceKjbqBySex(data) {
  return request({
    url: '/advice/advice/getKjTjAdviceKjbqBySex',
    method: 'get',
    params: data
  })
}
 
// 查询体检项目列表(树形结构)
export function getCyTjAdviceKjbqBySex(data) {
  return request({
    url: '/advice/advice/getCyTjAdviceKjbqBySex',
    method: 'get',
    params: data
  })
}
 
 
export function tbhisproprice() {
  return request({
    url: '/system/config/tbhisproprice',
    method: 'get',
  })
}
 
// 查询表名、字段、拼音
export function getPinyin(tbname,zd,pymzd) {
  return request({
    url: '/hosp/project/plxgpym',
    method: 'get',
    params: {tbname:tbname,zd:zd,pymzd,pymzd}
  })
}