index.jsx 339B

1234567891011
  1. import {Image, View } from '@tarojs/components'
  2. import Nodata from '@/assets/icons/housemantj/noData.png'
  3. export default (props) => {
  4. return (
  5. <>
  6. <View style={{textAlign:'center',paddingTop:'20px'}}>暂无数据</View>
  7. <Image mode="widthFix" style={{ width: '80%', margin: '0 10%' }} src={Nodata} ></Image>
  8. </>
  9. )
  10. }