解决合并冲突
This commit is contained in:
28
openhis-ui-vue3/src/api/gf/ratioManage.js
Normal file
28
openhis-ui-vue3/src/api/gf/ratioManage.js
Normal file
@@ -0,0 +1,28 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询大项比例列表
|
||||
export function getTypeRatioList() {
|
||||
return request({
|
||||
url: `/nenu/gf-ratio-manage/type-ratio-list`,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 保存大项比例列表
|
||||
export function saveTypeRatioList(gfTypeRatioSaveDto) {
|
||||
return request({
|
||||
url: '/nenu/gf-ratio-manage/type-ratio-list',
|
||||
method: 'put',
|
||||
data: gfTypeRatioSaveDto
|
||||
})
|
||||
}
|
||||
|
||||
// 查询单项比例分页
|
||||
export function getIndividualRatioPage(query) {
|
||||
return request({
|
||||
url: '/nenu/gf-ratio-manage/individual-ratio-page',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user