Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-05-07 14:21:04 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7eab03c20703beaaf3258ab2ddd44770c1ce6c2e
7eab03c2
1 parent
96ff21fa
feat: 修改BUG
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
src/views/editReportingData/RowDataEditForm.vue
src/views/editReportingData/RowDataEditForm.vue
View file @
7eab03c
...
...
@@ -380,6 +380,10 @@ export default {
callback();
};
var checkSecondQty = (rule, value, callback) => {
if (!value) {
callback();
return;
}
if (isNaN(value)) {
callback(new Error("请输入有效的数字"));
return;
...
...
Please
register
or
login
to post a comment