列晒筛选

This commit is contained in:
juguohong
2025-08-18 00:36:57 +08:00
parent db48e55b05
commit 169eaffb96
13 changed files with 193 additions and 50 deletions

View File

@@ -0,0 +1,22 @@
import { SearchBar } from '@nutui/nutui-react-taro'
import styles from './index.module.scss'
const SearchBarComponent = () => {
return (
<>
<SearchBar
// leftIn={
// <div>123</div>
// }
right={
<div className={styles.searchBarRight}></div>
}
className={styles.searchBar}
placeholder='搜索上海的球局和场地'
/>
</>
)
}
export default SearchBarComponent