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) );