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