23 lines
576 B
TypeScript
23 lines
576 B
TypeScript
import { Image, View } from '@tarojs/components'
|
|
import React, { memo, useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|
import styles from '../empty/index.module.scss'
|
|
|
|
interface PropsObj {
|
|
picUrl?: string
|
|
text?: string
|
|
}
|
|
const Empty = (pros: PropsObj) => {
|
|
const {
|
|
picUrl = '',
|
|
text = '无搜索历史',
|
|
} = pros
|
|
|
|
return (
|
|
<View className={styles.mainBox}>
|
|
<Image className={styles.pic} mode="aspectFill" lazyLoad src={picUrl}></Image>
|
|
<View className={styles.text}>{text}</View>
|
|
</View>
|
|
)
|
|
}
|
|
export default memo(Empty)
|