Commit cc8a9caaf5f17cf032a3269e5fd79614f5fa6d65

Authored by xp.Huang
2 parents 07f1155d c3531260

Merge branch 'perf/filter-query-limit' into 'main_dev'

perf: 优化查询设备遥测数据最大条数描述

See merge request yunteng/thingskit-front!874
... ... @@ -163,7 +163,7 @@ export const defaultSchemas: FormSchema[] = [
163 163 ifShow({ values }) {
164 164 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
165 165 },
166   - helpMessage: ['根据查询条件,查出的数据条数不超过这个值'],
  166 + helpMessage: ['根据查询条件, 查出的数据条数不超过这个值, 最大支持查询条数50000条.'],
167 167 componentProps() {
168 168 return {
169 169 max: 50000,
... ...
... ... @@ -184,7 +184,7 @@ export const formSchema = (): FormSchema[] => {
184 184 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
185 185 },
186 186 rules: [{ required: true, message: '最大条数为必填项' }],
187   - helpMessage: ['根据查询条件,查出的数据条数不超过这个值'],
  187 + helpMessage: ['根据查询条件, 查出的数据条数不超过这个值, 最大支持查询条数50000条.'],
188 188 componentProps() {
189 189 return {
190 190 max: 50000,
... ...
... ... @@ -183,7 +183,7 @@ export const formSchema = (): FormSchema[] => {
183 183 ifShow({ values }) {
184 184 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
185 185 },
186   - helpMessage: ['根据查询条件,查出的数据条数不超过这个值'],
  186 + helpMessage: ['根据查询条件, 查出的数据条数不超过这个值, 最大支持查询条数50000条.'],
187 187 componentProps() {
188 188 return {
189 189 max: 50000,
... ...
... ... @@ -123,7 +123,7 @@ export const formSchema = (): FormSchema[] => {
123 123 ifShow({ values }) {
124 124 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
125 125 },
126   - helpMessage: ['根据查询条件,查出的数据条数不超过这个值'],
  126 + helpMessage: ['根据查询条件, 查出的数据条数不超过这个值, 最大支持查询条数50000条.'],
127 127 componentProps() {
128 128 return {
129 129 max: 50000,
... ...