|
@@ -137,7 +137,7 @@
|
|
import { parseTimeRangeDateAndTimeContent } from '@/utils/utils';
|
|
import { parseTimeRangeDateAndTimeContent } from '@/utils/utils';
|
|
import { useAppStore, useUserStore } from '@/store';
|
|
import { useAppStore, useUserStore } from '@/store';
|
|
import { downloadByApi } from '@/utils/download';
|
|
import { downloadByApi } from '@/utils/download';
|
|
- import { getBeforeWeek } from '@/utils/day';
|
|
|
|
|
|
+ // import { getBeforeWeek } from '@/utils/day';
|
|
|
|
|
|
import ImportDialog from '@/components/import-dialog/index.vue';
|
|
import ImportDialog from '@/components/import-dialog/index.vue';
|
|
import PrintDialog from './printDialog.vue';
|
|
import PrintDialog from './printDialog.vue';
|
|
@@ -151,7 +151,7 @@
|
|
appStore.setInfo({ breadcrumbs: ['考试预约管理', '预约明细'] });
|
|
appStore.setInfo({ breadcrumbs: ['考试预约管理', '预约明细'] });
|
|
const userStore = useUserStore();
|
|
const userStore = useUserStore();
|
|
|
|
|
|
- const preDate = getBeforeWeek();
|
|
|
|
|
|
+ // const preDate = getBeforeWeek();
|
|
const searchModel = reactive<OrderRecordListFilter>({
|
|
const searchModel = reactive<OrderRecordListFilter>({
|
|
taskId: null,
|
|
taskId: null,
|
|
teachingId: null,
|
|
teachingId: null,
|
|
@@ -159,8 +159,8 @@
|
|
name: '',
|
|
name: '',
|
|
identityNumber: '',
|
|
identityNumber: '',
|
|
studentCode: '',
|
|
studentCode: '',
|
|
- startDate: preDate[0],
|
|
|
|
- endDate: preDate[1],
|
|
|
|
|
|
+ startDate: undefined,
|
|
|
|
+ endDate: undefined,
|
|
});
|
|
});
|
|
|
|
|
|
const columns: TableColumnData[] = [
|
|
const columns: TableColumnData[] = [
|