1import React from 'react'; 2import {Image, ImageProps, StyleSheet, Text, View} from 'react-native'; 3import rpx from '@/utils/rpx'; 4 5interface IImageProps extends ImageProps { 6 uri?: string; 7 emptySrc: any; 8} 9export default function (props: Omit<IImageProps, 'source'>) { 10 const {uri, emptySrc} = props; 11 const source = uri 12 ? { 13 uri, 14 } 15 : emptySrc; 16 return <Image {...props} source={source}></Image>; 17} 18