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

feat: 调整条数为100条

parent 15f17fb2
...@@ -51,7 +51,7 @@ const ReconciliationQuery = props => { ...@@ -51,7 +51,7 @@ const ReconciliationQuery = props => {
return true; return true;
} }
if (!sameData.length && !data.length) { if (!sameData.length && !data.length) {
notification.error({ message: '请选择1~31条账单批次' }); notification.error({ message: '请选择1~100条账单批次' });
return false; return false;
} }
notification.error({ message: '只有待确认账单可以确认' }); notification.error({ message: '只有待确认账单可以确认' });
...@@ -92,7 +92,7 @@ const ReconciliationQuery = props => { ...@@ -92,7 +92,7 @@ const ReconciliationQuery = props => {
}; };
const onDownload = async () => { const onDownload = async () => {
if (selectedRowKeys.length && selectedRowKeys.length < 32) { if (selectedRowKeys.length && selectedRowKeys.length < 101) {
setloading(true); setloading(true);
const data = await downloadSelfBillDetail(selectedRowKeys); const data = await downloadSelfBillDetail(selectedRowKeys);
const blob = new Blob([data]); const blob = new Blob([data]);
...@@ -102,7 +102,7 @@ const ReconciliationQuery = props => { ...@@ -102,7 +102,7 @@ const ReconciliationQuery = props => {
setselectedRows([]); setselectedRows([]);
reload(); reload();
} else { } else {
notification.error({ message: '请选择1~31条账单批次' }); notification.error({ message: '请选择1~100条账单批次' });
setloading(false); 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