Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
merchant-manage-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ui
merchant-manage-ui
Commits
8cafd407
Commit
8cafd407
authored
Apr 11, 2025
by
shida.liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 调整条数为100条
parent
15f17fb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
index.jsx
src/pages/ReconciliationQuery/index.jsx
+3
-3
No files found.
src/pages/ReconciliationQuery/index.jsx
View file @
8cafd407
...
...
@@ -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
);
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment