Commit 8cafd407 authored by shida.liu's avatar shida.liu

feat: 调整条数为100条

parent 15f17fb2
......@@ -51,7 +51,7 @@ const ReconciliationQuery = props => {
return true;
}
if (!sameData.length && !data.length) {
notification.error({ message: '请选择1~31条账单批次' });
notification.error({ message: '请选择1~100条账单批次' });
return false;
}
notification.error({ message: '只有待确认账单可以确认' });
......@@ -92,7 +92,7 @@ const ReconciliationQuery = props => {
};
const onDownload = async () => {
if (selectedRowKeys.length && selectedRowKeys.length < 32) {
if (selectedRowKeys.length && selectedRowKeys.length < 101) {
setloading(true);
const data = await downloadSelfBillDetail(selectedRowKeys);
const blob = new Blob([data]);
......@@ -102,7 +102,7 @@ const ReconciliationQuery = props => {
setselectedRows([]);
reload();
} else {
notification.error({ message: '请选择1~31条账单批次' });
notification.error({ message: '请选择1~100条账单批次' });
setloading(false);
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment