Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
7ef434000e613cadea12aa57fb356ec4c71b6dd7
Authored by
fengtao
2022-08-24 17:56:12 +0800
1 parent
6e88ff78
fix:DEFECT-628 最大值设置了1000,编辑时还是显示200
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
src/views/report/config/ReportConfigDrawer.vue
src/views/report/config/config.data.ts
src/views/report/config/ReportConfigDrawer.vue
View file @
7ef4340
...
...
@@ -384,7 +384,7 @@
384
384
queryCondition = {
385
385
agg: values.agg,
386
386
interval: values.interval,
387
-
limit: values.limit
1
,
387
+
limit: values.limit,
388
388
...{
389
389
startTs: startTs.value,
390
390
},
...
...
src/views/report/config/config.data.ts
View file @
7ef4340
...
...
@@ -383,7 +383,7 @@ export const formSchema: QFormSchema[] = [
383
383
},
384
384
},
385
385
{
386
-
field: 'limit
1
',
386
+
field: 'limit',
387
387
required: true,
388
388
label: '最大值',
389
389
component: 'InputNumber',
...
...