import './Empty.less' import { Component } from '@tarojs/taro' import { View, Image } from '@tarojs/components' type EmptyProps = { /** * 页面为空显示的图片 */ img: string /** * 页面为空的提示 */ tips: string } export default class Empty extends Component { static options = { addGlobalClass: true, } render() { const { img, tips } = this.props return ( {tips} ) } }