no_record.tsx 490 B

123456789101112
  1. import { View, Image } from "@tarojs/components";
  2. import './no_record.scss'
  3. import { rpxToPx } from "@/utils/tools";
  4. import { MainColorType } from "@/context/themes/color";
  5. export default function NoRecord() {
  6. return <View className="no_more_bg">
  7. {/* <Image style={{width:rpxToPx(160),height:rpxToPx(160)}} src={require('@assets/_health/null.png')}/> */}
  8. <View style={{ height: rpxToPx(188) }} />
  9. <View className="h30 bold g03">暂无数据</View>
  10. </View>
  11. }