From a93a769e851da929d682760a9eb36442fb0c17b9 Mon Sep 17 00:00:00 2001 From: yezian Date: Sat, 15 Jun 2024 00:21:50 +0800 Subject: [PATCH] =?UTF-8?q?ios=E7=94=A8=E6=88=B7=E5=9C=A8=E8=87=AA?= =?UTF-8?q?=E4=B8=BB=E9=80=80=E6=AC=BE=E9=A1=B5=E9=9D=A2=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E9=87=91=E5=B8=81=E9=87=91=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- screeens/SpaceSetting/SpaceRefund/index.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/screeens/SpaceSetting/SpaceRefund/index.jsx b/screeens/SpaceSetting/SpaceRefund/index.jsx index 92a0f53..b18784a 100644 --- a/screeens/SpaceSetting/SpaceRefund/index.jsx +++ b/screeens/SpaceSetting/SpaceRefund/index.jsx @@ -5,6 +5,7 @@ import { TextInput, KeyboardAvoidingView, ActivityIndicator, + Platform, } from "react-native"; import React, { useState, useEffect } from "react"; import { useTailwind } from "tailwind-rn"; @@ -162,7 +163,9 @@ export default function SpaceRefund({ navigation, route }) { 退款价格 - ¥{data?.price / 100} + {Platform.OS === "ios" + ? data?.coin_price + "金币" + : "¥" + data?.price / 100}