bm-admin-ui 1.1.18-alpha → 1.1.19-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -374,7 +374,7 @@ var checkbox = {
|
|
|
374
374
|
type: data.type,
|
|
375
375
|
field: data.field,
|
|
376
376
|
title: data.title.title,
|
|
377
|
-
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true }, extraProps),
|
|
377
|
+
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true, maxTagCount: data.props.maxTagCount, maxTagPlaceholder: data.props.maxTagPlaceholder }, extraProps),
|
|
378
378
|
options: data.options,
|
|
379
379
|
effect: {
|
|
380
380
|
required: data.effect.required && '请选择',
|
|
@@ -393,7 +393,7 @@ var checkbox = {
|
|
|
393
393
|
type: data.type,
|
|
394
394
|
field: data.field,
|
|
395
395
|
title: data.title.title,
|
|
396
|
-
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true }, extraProps),
|
|
396
|
+
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true, maxTagCount: data.props.maxTagCount, maxTagPlaceholder: data.props.maxTagPlaceholder }, extraProps),
|
|
397
397
|
options: data.options,
|
|
398
398
|
effect: {
|
|
399
399
|
required: data.effect.required && '请选择',
|
|
@@ -419,6 +419,8 @@ var checkbox = {
|
|
|
419
419
|
options: data.options,
|
|
420
420
|
mode: 'multiple',
|
|
421
421
|
allowClear: true,
|
|
422
|
+
maxTagCount: data.props.maxTagCount,
|
|
423
|
+
maxTagPlaceholder: data.props.maxTagPlaceholder,
|
|
422
424
|
getPopupContainer: getContainer,
|
|
423
425
|
disabled: data.disabled,
|
|
424
426
|
'onUpdate:value': (value) => {
|
|
@@ -388,7 +388,7 @@ var checkbox = {
|
|
|
388
388
|
type: data.type,
|
|
389
389
|
field: data.field,
|
|
390
390
|
title: data.title.title,
|
|
391
|
-
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true }, extraProps),
|
|
391
|
+
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true, maxTagCount: data.props.maxTagCount, maxTagPlaceholder: data.props.maxTagPlaceholder }, extraProps),
|
|
392
392
|
options: data.options,
|
|
393
393
|
effect: {
|
|
394
394
|
required: data.effect.required && '请选择',
|
|
@@ -407,7 +407,7 @@ var checkbox = {
|
|
|
407
407
|
type: data.type,
|
|
408
408
|
field: data.field,
|
|
409
409
|
title: data.title.title,
|
|
410
|
-
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true }, extraProps),
|
|
410
|
+
props: Object.assign({ placeholder: data.props.placeholder, allowClear: true, maxTagCount: data.props.maxTagCount, maxTagPlaceholder: data.props.maxTagPlaceholder }, extraProps),
|
|
411
411
|
options: data.options,
|
|
412
412
|
effect: {
|
|
413
413
|
required: data.effect.required && '请选择',
|
|
@@ -433,6 +433,8 @@ var checkbox = {
|
|
|
433
433
|
options: data.options,
|
|
434
434
|
mode: 'multiple',
|
|
435
435
|
allowClear: true,
|
|
436
|
+
maxTagCount: data.props.maxTagCount,
|
|
437
|
+
maxTagPlaceholder: data.props.maxTagPlaceholder,
|
|
436
438
|
getPopupContainer: getContainer,
|
|
437
439
|
disabled: data.disabled,
|
|
438
440
|
'onUpdate:value': (value) => {
|