Commit 72c7063fdd6cab1dbe871ca8cb8f8a132f32996c

Authored by fengtao
1 parent 4a19b38e

pref:优化设备列表 最大条数提示信息

... ... @@ -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: ['根据查询条件,查出的数据条数不超过这个值'],
167 167 componentProps() {
168 168 return {
169 169 max: 50000,
... ...
... ... @@ -185,7 +185,7 @@ export const formSchema: FormSchema[] = [
185 185 ifShow({ values }) {
186 186 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
187 187 },
188   - helpMessage: ['根据查询条件,查出的数据结果不超过这个值'],
  188 + helpMessage: ['根据查询条件,查出的数据条数不超过这个值'],
189 189 componentProps() {
190 190 return {
191 191 max: 50000,
... ...