123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- import { defineComponent, reactive } from 'vue';
- import styles from '../index.module.less';
- import {
- NButton,
- NDataTable,
- NForm,
- NFormItem,
- NImage,
- NSelect,
- NSpace
- } from 'naive-ui';
- import SearchInput from '@/components/searchInput';
- import CSelect from '@/components/CSelect';
- import Pagination from '@/components/pagination';
- import add from './images/add.png';
- import { getMinutes, getSecend, getTimes } from '/src/utils/dateFormat';
- import { getTestList } from '../../classList/api';
- export default defineComponent({
- name: 'student-studentList',
- props: {
- timer: {
- type: Array,
- defaut: () => []
- }
- },
- setup(props, { emit, expose }) {
- const state = reactive({
- searchWord: '',
- orchestraType: null,
- courseTypeCode: null,
- subjectId: null,
- classId: null,
- studentType: null,
- loading: false,
- pagination: {
- page: 1,
- rows: 10,
- pageTotal: 4
- },
- tableList: [] as any
- });
- const search = () => {
- console.log('search', state);
- };
- const onReset = () => {
- console.log('search');
- };
- const getList = async () => {
- state.loading = true;
- try {
- const res = await getTestList({
- ...state.pagination,
- ...getTimes(props.timer, ['startTime', 'endTime'], 'YYYY-MM-DD')
- });
- state.tableList = res.data.rows;
- state.pagination.pageTotal = res.data.total;
- state.loading = false;
- } catch (e) {
- state.loading = false;
- console.log(e);
- }
- };
- expose({ getList });
- const handleSorterChange = (sroter: any) => {
- if(!sroter){
- practiceDaysRef.sortOrder = false
- practiceDurationRef.sortOrder = false
- practiceDurationAvgRef.sortOrder = false
- }
- console.log(sroter, 'sroter');
- // getList()
- };
- const practiceDaysRef = reactive({
- title: '练习天数',
- key: 'practiceDays',
- sorter: true,
- sortOrder: false,
- render(row: any) {
- return <>{row.practiceDays ? row.practiceDays : 0}天</>;
- }
- });
- const practiceDurationRef = reactive({
- title: '练习总时长',
- key: 'practiceDuration',
- sorter: true,
- sortOrder: false,
- render(row: any) {
- return (
- <>
- {row.practiceDuration
- ? getMinutes(row.practiceDuration) > 0
- ? getMinutes(row.practiceDuration) +
- '分' +
- getSecend(row.practiceDuration) +
- '秒'
- : getSecend(row.practiceDuration) + '秒'
- : 0}
- </>
- );
- }
- });
- const practiceDurationAvgRef = reactive({
- title: '平均练习时长',
- key: 'practiceDurationAvg',
- sorter: true,
- sortOrder: false,
- render(row: any) {
- return (
- <>
- {row.practiceDurationAvg
- ? getMinutes(row.practiceDurationAvg) > 0
- ? getMinutes(row.practiceDurationAvg) +
- '分' +
- getSecend(row.practiceDurationAvg) +
- '秒'
- : getSecend(row.practiceDurationAvg) + '秒'
- : 0}
- </>
- );
- }
- });
- const columns = () => {
- return [
- {
- title: '姓名',
- key: 'studentName'
- },
- {
- title: '手机号',
- key: 'studentPhone'
- },
- practiceDaysRef,
- practiceDurationRef,
- practiceDurationAvgRef
- ];
- };
- return () => (
- <div class={styles.listWrap}>
- <div class={styles.tableWrap}>
- <NDataTable
- class={styles.classTable}
- loading={state.loading}
- columns={columns()}
- data={state.tableList}
- onUpdate:sorter={handleSorterChange}></NDataTable>
- <Pagination
- v-model:page={state.pagination.page}
- v-model:pageSize={state.pagination.rows}
- v-model:pageTotal={state.pagination.pageTotal}
- onList={getList}
- sync
- saveKey="orchestraRegistration-key"
- />
- </div>
- </div>
- );
- }
- });
|