|
|
|
@ -1,12 +1,11 @@ |
|
|
|
|
import {FC, useCallback, useEffect, useState} from "react"; |
|
|
|
|
import {Image, Input, Radio, Text, View} from "@tarojs/components"; |
|
|
|
|
import {Input, Radio, View} from "@tarojs/components"; |
|
|
|
|
import styles from "../courseAdmin.module.scss"; |
|
|
|
|
import Icon from "@/components/icon"; |
|
|
|
|
import {CourseAllParam, curriculum} from "@/api"; |
|
|
|
|
import CustomPageContainer from "@/components/custom-page-container/custom-page-container"; |
|
|
|
|
import Empty from "@/components/empty/empty"; |
|
|
|
|
import MyButton from "@/components/button/MyButton"; |
|
|
|
|
import screen from '@/static/img/screen.png' |
|
|
|
|
|
|
|
|
|
interface Props { |
|
|
|
|
param: CourseAllParam |
|
|
|
@ -70,17 +69,10 @@ export const Search: FC<Props> = ({param, setParam}) => { |
|
|
|
|
})} |
|
|
|
|
/> |
|
|
|
|
</View> |
|
|
|
|
<View onClick={() => setShow(true)}> |
|
|
|
|
<Text>筛选</Text> |
|
|
|
|
<Image src={screen} |
|
|
|
|
mode='aspectFit' |
|
|
|
|
style={{ |
|
|
|
|
display: 'inline-block', |
|
|
|
|
width: '15px', |
|
|
|
|
height: '15px', |
|
|
|
|
verticalAlign: 'middle', |
|
|
|
|
marginLeft: '5px' |
|
|
|
|
}}/> |
|
|
|
|
<View className='mt-3'> |
|
|
|
|
<View onClick={() => setShow(true)} className={styles.select}> |
|
|
|
|
选择部门 |
|
|
|
|
</View> |
|
|
|
|
</View> |
|
|
|
|
</View> |
|
|
|
|
|
|
|
|
|