|
@@ -1,7 +1,7 @@
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
// 查询耗材出库登记列表
|
|
|
-export function listPutout(query) {
|
|
|
+export function listConsumeputout(query) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/consumeputout/list',
|
|
|
method: 'get',
|
|
@@ -10,7 +10,7 @@ export function listPutout(query) {
|
|
|
}
|
|
|
|
|
|
// 查询耗材出库登记详细
|
|
|
-export function getPutout(id) {
|
|
|
+export function getConsumeputout(id) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/consumeputout/' + id,
|
|
|
method: 'get'
|
|
@@ -18,7 +18,7 @@ export function getPutout(id) {
|
|
|
}
|
|
|
|
|
|
// 新增耗材出库登记
|
|
|
-export function addPutout(data) {
|
|
|
+export function addConsumeputout(data) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/consumeputout',
|
|
|
method: 'post',
|
|
@@ -27,7 +27,7 @@ export function addPutout(data) {
|
|
|
}
|
|
|
|
|
|
// 修改耗材出库登记
|
|
|
-export function updatePutout(data) {
|
|
|
+export function updateConsumeputout(data) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/consumeputout',
|
|
|
method: 'put',
|
|
@@ -36,7 +36,7 @@ export function updatePutout(data) {
|
|
|
}
|
|
|
|
|
|
// 删除耗材出库登记
|
|
|
-export function delPutout(id) {
|
|
|
+export function delConsumeputout(id) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/consumeputout/' + id,
|
|
|
method: 'delete'
|
|
@@ -44,7 +44,7 @@ export function delPutout(id) {
|
|
|
}
|
|
|
|
|
|
// 导出耗材出库登记
|
|
|
-export function exportPutout(query) {
|
|
|
+export function exportConsumeputout(query) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/consumeputout/export',
|
|
|
method: 'get',
|