From 6a1443e73a00681be8bbf4ed47dcd4c70d4a3f8a Mon Sep 17 00:00:00 2001 From: lishenfeng Date: Thu, 12 Mar 2026 13:49:54 +0800 Subject: [PATCH] =?UTF-8?q?fix():=20=E4=BF=AE=E6=94=B9=E5=AE=9E=E6=97=B6?= =?UTF-8?q?=E9=9B=A8=E6=83=85=E7=9A=84=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Business/SiYu/components/WaterRainSection/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Home/components/Business/SiYu/components/WaterRainSection/index.js b/src/views/Home/components/Business/SiYu/components/WaterRainSection/index.js index 5a443c9..b3aafd5 100644 --- a/src/views/Home/components/Business/SiYu/components/WaterRainSection/index.js +++ b/src/views/Home/components/Business/SiYu/components/WaterRainSection/index.js @@ -28,7 +28,7 @@ const WaterRainSection = () => { const getRainList = async () => { setLoading(true); try { - const result = await httpget(apiurl.sy.sssyq.reservoir); + const result = await httpget(apiurl.sy.sssyq.rain); if (result.code === 200) { setDataList(result.data); } @@ -42,7 +42,7 @@ const WaterRainSection = () => { const getReservoirList = async () => { setLoading(true); try { - const result = await httpget(apiurl.sy.sssyq.rain); + const result = await httpget(apiurl.sy.sssyq.reservoir); if (result.code === 200) { setDataList(result.data); }