From 73d7500457564a3f5b1aae94ef18fd295e9f4f9c Mon Sep 17 00:00:00 2001
From: dongyukun <1208714201@qq.com>
Date: 星期四, 12 十二月 2024 11:38:44 +0800
Subject: [PATCH] 请求路径修改

---
 src/api/prod/hourVolume.ts |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/api/prod/hourVolume.ts b/src/api/prod/hourVolume.ts
index be6eb23..15c03dc 100644
--- a/src/api/prod/hourVolume.ts
+++ b/src/api/prod/hourVolume.ts
@@ -25,40 +25,40 @@
 
 // 查询HourVolume列表
 export const getHourVolumePage = (params: HourVolumePageReqVO) => {
-  return request.get({ url: '/xmcpms/order-prod/wash/hourVolume/page', params })
+  return request.get({ url: '/xmcpms/prod/wash/hourVolume/page', params })
 }
 
 // 查询HourVolume列表
 export const getPointList = (params: HourVolumePageReqVO) => {
-  return request.get({ url: '/xmcpms/order-prod/wash/hourVolume/list', params })
+  return request.get({ url: '/xmcpms/prod/wash/hourVolume/list', params })
 }
 
 // 查询HourVolume详情
 export const getHourVolume = (id: number) => {
-  return request.get({ url: `/xmcpms/prod/wash/hourVolume/info/${id}`})
+  return request.get({ url: `/xmcpms/prod/prod/wash/hourVolume/info/${id}`})
 }
 
 // 新增HourVolume
 export const createHourVolume = (data: HourVolumeVO) => {
-  return request.post({ url: '/xmcpms/order-prod/wash/hourVolume/create', data })
+  return request.post({ url: '/xmcpms/prod/wash/hourVolume/create', data })
 }
 
 // 修改HourVolume
 export const updateHourVolume = (data: HourVolumeVO) => {
-  return request.put({ url: '/xmcpms/order-prod/wash/hourVolume/update', data })
+  return request.put({ url: '/xmcpms/prod/wash/hourVolume/update', data })
 }
 
 // 删除HourVolume
 export const deleteHourVolume = (id: number) => {
-  return request.delete({ url: '/xmcpms/order-prod/wash/hourVolume/delete?id=' + id })
+  return request.delete({ url: '/xmcpms/prod/wash/hourVolume/delete?id=' + id })
 }
 
 //导出HourVolumeList
 export const exportHourVolume = (params) => {
-  return request.download({ url: '/xmcpms/order-prod/wash/hourVolume/export', params })
+  return request.download({ url: '/xmcpms/prod/wash/hourVolume/export', params })
 }
 
 // 下载用户导入模板
 export const importPointTemplate = () => {
-  return request.download({ url: '/xmcpms/order-prod/wash/hourVolume/get-import-template' })
+  return request.download({ url: '/xmcpms/prod/wash/hourVolume/get-import-template' })
 }

--
Gitblit v1.9.3