import OSearch from '@/components/o-search' import OEmpty from '@/components/o-empty' import dayjs from 'dayjs' import { Icon, Popover, DatePicker, DatePickerColumnType, Popup, List, PullRefresh, ActionSheet, showToast, Sticky, Picker } from 'vant' import OFullRefresh from '@/components/o-full-refresh' import { defineComponent, reactive, ref, onMounted, watch } from 'vue' import { useRouter } from 'vue-router' import styles from './timer-bang.module.less' import request from '@/helpers/request' import RankItem from '../modals/rank-item' export default defineComponent({ name: 'timer-bang', props: ['toHeight', 'startTime', 'endTime'], setup(props) { const state = reactive({ showPopoverTime: false, showPopoverOrchestra: false, showPopoverSubject: false, actions: [] as any, subjects: [] as any, currentDate: [dayjs().format('YYYY'), dayjs().format('MM')] }) const forms = reactive({ practiceMonth: props.startTime, orchestraId: '', orchestraName: '全部乐团', subjectId: '', subjectName: '全部声部', page: 1, rows: 50, sortType: 'PRACTICE_TIMES' }) const refreshing = ref(false) const loading = ref(false) const finished = ref(false) const showContact = ref(false) const list = ref([]) const toTop = ref(props.toHeight) watch( () => props.toHeight, (val: number) => { toTop.value = val console.log(toTop.value) } ) watch( () => props.startTime, () => { forms.practiceMonth = props.startTime refreshing.value = true getList() } ) const getList = async () => { loading.value = true try { if (refreshing.value) { forms.page = 1 list.value = [] refreshing.value = false } const res = await request.post('/api-school/student/page', { data: { ...forms } }) if (list.value.length > 0 && res.data.pages === 1) { return } forms.page = res.data.current + 1 // list.value = list.value.concat(res.data.rows || []) list.value = res.data.rows showContact.value = list.value.length > 0 console.log(showContact.value, ' showContact.value ') loading.value = false finished.value = true // finished.value = res.data.current >= res.data.pages } catch (e: any) { // console.log(e, 'e') const message = e.message showToast(message) showContact.value = false finished.value = true } } const checkOrchestra = (val: any) => { const selectedOptions = val.selectedOptions[0] || {} forms.orchestraId = selectedOptions.value forms.orchestraName = selectedOptions.name state.showPopoverOrchestra = false refreshing.value = true getList() } const checkSubject = (val: any) => { const selectedOptions = val.selectedOptions[0] || {} forms.subjectId = selectedOptions.value forms.subjectName = selectedOptions.name state.showPopoverSubject = false refreshing.value = true getList() } const getOrchestraList = async () => { // const schoolId = globalState.user.data.schoolInfos // .map((item) => { // return item.id // }) // .join(',') try { const res = await request.post('/api-school/orchestra/page', { data: { page: 1, rows: 9999, status: 'DONE' } }) state.actions = res.data.rows.map((item) => { return { name: item.name, value: item.id as string } }) state.actions.unshift({ name: '全部乐团', value: '' }) } catch (e: any) { const message = e.message showToast(message) } } const getSubjects = async () => { try { const res = await request.post('/api-school/subjectBasicConfig/page', { data: { page: 1, rows: 9999, enableFlag: true } }) state.subjects = res.data.rows.map((item) => { return { name: item.subjectName, value: item.subjectId as string } }) state.subjects.unshift({ name: '全部声部', value: '' }) } catch (e: any) { const message = e.message showToast(message) } } onMounted(() => { getSubjects() getOrchestraList() getList() }) const onRefresh = () => { finished.value = false // 重新加载数据 // 将 loading 设置为 true,表示处于加载状态 loading.value = true getList() } return () => (