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}