@@ -12,7 +12,7 @@ build:
commit:
git add . && \
- git commit --no-verify -m "fix: change textbookSubscription"
+ git commit --no-verify -m "fix: change schoolOpens record"
checkPre:
git checkout pre
@@ -40,7 +40,7 @@
useSearchForm: true,
showTableSetting: true,
bordered: true,
- immediate: true,
+ immediate: false,
canResize: true,
actionColumn: {
width: 120,
@@ -95,6 +95,10 @@
};
const handleExport = async () => {
+ if (!searchInfo.studentReportPlanId) {
+ createMessage.warning('请先选择计划再导出');
+ return;
+ }
const postData = getForm().getFieldsValue();
downloadByData(
(await postStudentReportRecordExportQuery({ ...postData, ...searchInfo })).data,