|
@@ -1,7 +1,7 @@
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
// 查询防疫用品发放登记列表
|
|
|
-export function listPutout(query) {
|
|
|
+export function listAntiepidemicputout(query) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/antiepidemicputout/list',
|
|
|
method: 'get',
|
|
@@ -10,7 +10,7 @@ export function listPutout(query) {
|
|
|
}
|
|
|
|
|
|
// 查询防疫用品发放登记详细
|
|
|
-export function getPutout(id) {
|
|
|
+export function getAntiepidemicputout(id) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/antiepidemicputout/' + id,
|
|
|
method: 'get'
|
|
@@ -18,16 +18,16 @@ export function getPutout(id) {
|
|
|
}
|
|
|
|
|
|
// 新增防疫用品发放登记
|
|
|
-export function addPutout(data) {
|
|
|
+export function addAntiepidemicputout(data) {
|
|
|
return request({
|
|
|
- url: '/antiepidemicputout/putout',
|
|
|
+ url: '/medicalhealth/antiepidemicputout',
|
|
|
method: 'post',
|
|
|
data: data
|
|
|
})
|
|
|
}
|
|
|
|
|
|
// 修改防疫用品发放登记
|
|
|
-export function updatePutout(data) {
|
|
|
+export function updateAntiepidemicputout(data) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/antiepidemicputout',
|
|
|
method: 'put',
|
|
@@ -36,7 +36,7 @@ export function updatePutout(data) {
|
|
|
}
|
|
|
|
|
|
// 删除防疫用品发放登记
|
|
|
-export function delPutout(id) {
|
|
|
+export function delAntiepidemicputout(id) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/antiepidemicputout/' + id,
|
|
|
method: 'delete'
|
|
@@ -44,7 +44,7 @@ export function delPutout(id) {
|
|
|
}
|
|
|
|
|
|
// 导出防疫用品发放登记
|
|
|
-export function exportPutout(query) {
|
|
|
+export function exportAntiepidemicputout(query) {
|
|
|
return request({
|
|
|
url: '/medicalhealth/antiepidemicputout/export',
|
|
|
method: 'get',
|