From ebdec28693c02b8e8b9753776bbab675816163c0 Mon Sep 17 00:00:00 2001 From: harukin-OneMix4 Date: Sat, 27 Jan 2024 00:52:21 +0900 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BE=9B=E8=A1=A8=E7=A4=BA=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ActionSheetComponents/EachTrainInfo.js | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/components/ActionSheetComponents/EachTrainInfo.js b/components/ActionSheetComponents/EachTrainInfo.js index bb20849..a13ff5d 100644 --- a/components/ActionSheetComponents/EachTrainInfo.js +++ b/components/ActionSheetComponents/EachTrainInfo.js @@ -610,6 +610,33 @@ export const EachTrainInfo = (props) => { {trainData.map((i, index) => { const [station, se, time] = i.split(","); + if(se == "提"){ + return ( + Linking.openURL(time)} + key={station} + > + + + {station} + + + 提供元 + + + + + + ); + } const Stations = stationList.map((a) => a.filter((d) => d.StationName == station) );