1
lkk
2025-04-29 cb9989c7167856993a02238fde5a0ddd37c2c0cd
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
import request from '@/utils/request'
 
// 查询体检收费明细列表
export function listChargingstandard(query) {
  return request({
    url: '/hosp/chargingstandard/list',
    method: 'get',
    params: query
  })
}
 
// 查询体检收费明细详细
export function getChargingstandard(id) {
  return request({
    url: '/hosp/chargingstandard/' + id,
    method: 'get'
  })
}
 
// 新增体检收费明细
export function addChargingstandard(data) {
  return request({
    url: '/hosp/chargingstandard',
    method: 'post',
    data: data
  })
}
 
// 修改体检收费明细
export function updateChargingstandard(data) {
  return request({
    url: '/hosp/chargingstandard',
    method: 'put',
    data: data
  })
}
 
// 删除体检收费明细
export function delChargingstandard(id) {
  return request({
    url: '/hosp/chargingstandard/' + id,
    method: 'delete'
  })
}