general-basic-form 2.2.0 → 2.2.1

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.
package/README.md CHANGED
@@ -240,6 +240,19 @@ parametersType 类型介绍
240
240
  className: fieldClassName,
241
241
  },
242
242
  },
243
+ {
244
+ label: '',
245
+ prop: 'description',
246
+ type: 'description',
247
+ fieldSetting: {
248
+ className: fieldClassName,
249
+ },
250
+ description: [
251
+ 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA',
252
+ '段落2',
253
+ 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
254
+ ],
255
+ },
243
256
  {
244
257
  label: '多维数组',
245
258
  prop: 'prices',
@@ -252,6 +265,7 @@ parametersType 类型介绍
252
265
  setting: {
253
266
  heading: true, //是否显示标题
254
267
  dim: 4, // 多维数组,注意要和columns的长度相等,输出为对象数组
268
+ itemWidth: 'mean',//itemWidth: 'auto' | 'mean' 自动宽度(满行) | 平均分配宽度
255
269
  columns: [
256
270
  {
257
271
  prop: 'id',
@@ -531,7 +545,7 @@ parametersType 类型介绍
531
545
  },
532
546
  ],
533
547
  },
534
- ],
548
+ ]
535
549
 
536
550
  //rules为表单校验规则,每个组件都可以传入
537
551