|
|
@@ -39,14 +39,8 @@ const BankCardInfo: React.FC<BankCardInfoProps> = ({ bankCards, loading }) => {
|
|
|
|
|
|
return (
|
|
|
<View className="bg-white rounded-lg p-4 mb-3 flex flex-col">
|
|
|
- {/* 标题和添加按钮 */}
|
|
|
- <View className="flex justify-between items-center mb-3">
|
|
|
- <Text className="text-base font-semibold text-gray-700">银行卡信息</Text>
|
|
|
- <View className="flex items-center">
|
|
|
- <View className="i-heroicons-plus-20-solid w-4 h-4 text-blue-500 mr-1" />
|
|
|
- <Text className="text-sm text-blue-500">添加</Text>
|
|
|
- </View>
|
|
|
- </View>
|
|
|
+ {/* 标题 */}
|
|
|
+ <Text className="text-base font-semibold text-gray-700 mb-3">银行卡信息</Text>
|
|
|
|
|
|
<View>
|
|
|
{bankCards.map((bankCard) => (
|