br-dionysus 1.0.17 → 1.0.19

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
@@ -399,7 +399,7 @@ const options: Option[] = [{
399
399
  placeholder="请选择单号"
400
400
  :tableTitle="commodityOptionsTitle"
401
401
  :options="options"
402
- :keywords="{label: 'ApprovedQtyPU',value: 'DocNo' }"
402
+ :keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
403
403
  @selected="selected"
404
404
  @selectMultiple="selectMultiple"
405
405
  tableHeight="200"
@@ -413,16 +413,40 @@ const options: Option[] = [{
413
413
  border
414
414
  :remoteMethod="remoteMethod"
415
415
  ></m-select-table>
416
- <p>单选</p>
417
- <p>第二选择器的值: {{ code2 }}</p>
416
+ <p>多选单绑定的value为字符串类型</p>
417
+ <p>第二个选择器的值: {{ code2 }}</p>
418
418
  <m-select-table
419
419
  class="u-select"
420
420
  ref="selectRef"
421
421
  v-model="code2"
422
+ :name="code2Name"
423
+ placeholder="请选择单号"
424
+ :tableTitle="commodityOptionsTitle"
425
+ :options="options"
426
+ :keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
427
+ @selected="selected"
428
+ @selectMultiple="selectMultiple"
429
+ tableHeight="200"
430
+ @toPage="toPage"
431
+ :total="total"
432
+ scrollbarAlwaysOn
433
+ filterable
434
+ remote
435
+ multiple
436
+ border
437
+ :remoteMethod="remoteMethod"
438
+ @clear="test"
439
+ ></m-select-table>
440
+ <p>单选</p>
441
+ <p>第三个择器的值: {{ code3 }}</p>
442
+ <m-select-table
443
+ class="u-select"
444
+ ref="selectRef"
445
+ v-model="code3"
422
446
  placeholder="请选择单号"
423
447
  :tableTitle="commodityOptionsTitle"
424
448
  :options="options"
425
- :keywords="{ label: 'ApprovedQtyPU',value: 'DocNo' }"
449
+ :keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
426
450
  @selected="selected"
427
451
  @selectMultiple="selectMultiple"
428
452
  tableHeight="200"
@@ -435,6 +459,17 @@ const options: Option[] = [{
435
459
  :remoteMethod="remoteMethod"
436
460
  :popupWidth="800"
437
461
  ></m-select-table>
462
+ <!--<el-select-->
463
+ <!-- v-model="code2"-->
464
+ <!-- multiple-->
465
+ <!--&gt;-->
466
+ <!-- <el-option-->
467
+ <!-- v-for="item in options"-->
468
+ <!-- :key="item.DocNo"-->
469
+ <!-- :label="item.ApprovedQtyPU"-->
470
+ <!-- :value="item.DocNo"-->
471
+ <!-- ></el-option>-->
472
+ <!--</el-select>-->
438
473
  </div>
439
474
  </template>
440
475
 
@@ -442,6 +477,10 @@ const options: Option[] = [{
442
477
  import { ref, onMounted } from 'vue'
443
478
  import { Page } from 'packages/typings/class'
444
479
 
480
+ const test = () => {
481
+ console.log('xxx')
482
+ }
483
+
445
484
  const commodityOptionsTitle: TableTitle[] = [{
446
485
  prop: 'PRDocType',
447
486
  label: '单据类型'
@@ -464,6 +503,7 @@ const selectRef: any = ref<HTMLElement | null>(null)
464
503
 
465
504
  const code = ref<string | number | Array<string | number>>([])
466
505
  const code2 = ref<string | number | Array<string | number>>('')
506
+ const code2Name = ref<string | number | Array<string | number>>([])
467
507
  const code3 = ref<string | number | Array<string | number>>('')
468
508
 
469
509
  const total = ref(0)
@@ -497,7 +537,9 @@ setTimeout(() => {
497
537
  ACCode: 'xxxACCode2'
498
538
  }]
499
539
  code.value = [1, 2]
500
- code2.value = 1
540
+ code2.value = ''
541
+ code2Name.value = ['xxxApprovedQtyPU2', 'xxxApprovedQtyPU3', 'xxxApprovedQtyPU4']
542
+ code3.value = 1
501
543
 
502
544
  // setTimeout(() => {
503
545
  // options.value = []
@@ -544,7 +586,7 @@ onMounted(() => {
544
586
 
545
587
  <style>
546
588
  .u-select {
547
- width: 200px;
589
+ width: 240px;
548
590
  }
549
591
  </style>
550
592
 
@@ -553,77 +595,79 @@ onMounted(() => {
553
595
 
554
596
  ### 2) Attributes
555
597
 
556
- | 参数 | 说明 | 类型 | 可选 | 是否必填 | 默认值 |
557
- | ----------------- | ----------------------------------------------------------------------------------------- | ----------------------------------- | ------------------------- | :------: | ------------------------------- |
558
- | value / v-model | 绑定值 | number,string, Array<number,string> | - | | '' |
559
- | name | 显示值,有值时覆盖所有显示逻辑,直接显示name | number,string, Array<number,string> | - | | '' |
560
- | placeholder | 占位符 | string | - | | '请选择 |
561
- | disabled | 是否禁用 | boolean | - | | false |
562
- | size | 大小 | enum | large \| default \| small | | default |
563
- | options | 下拉表的 表内数据,详情见Option接口 | Option[] | - | | [] |
564
- | total | 总数量 当有值时,出现分页器 | number | null | | null |
565
- | filterMethod | 自定义搜索方法 (使用时必须传递filterable) | Function | null | | null |
566
- | filterable | 是否开启筛选 (如果开启但没有传递自定义搜索方法 效果为筛选当前页数据的 keywords[label]) | boolean | - | | false |
567
- | remote | 是否使用远程搜索 | boolean | - | | false |
568
- | remoteMethod | 自定义远程搜索方法 (使用时必须传递filterable和remote) | Function | - | | {} |
569
- | tableTitle | 下拉表的 表头定义,详情见TableTitle接口 | TableTitle[] | - | | [] |
570
- | multiple | 是否开启多选 | boolean | - | | false |
571
- | keywords | 关键字配置(value-key 配置)映射关键字 | Option | - | | {label: 'label' ,value:'value'} |
572
- | reserveSelection | 是否打开翻页多选 需要是多选才有效 | boolean | - | | false |
573
- | tableHeight | 表格高度 | string | number | | 200 |
574
- | isAffirmBtn | 是否有确认按钮 当使用此按钮时 selected事件无效 需使用selectMultiple事件 | boolean | - | | false |
575
- | scrollbarAlwaysOn | 是否常态显示滚动条 | boolean | - | | false |
576
- | allowCreate | 是否能够创建条目 | boolean | - | | false |
577
- | popupWidth | 弹窗的宽度 | string,number | - | | 500 |
578
- | border | 表格边框 | boolean | - | | false |
598
+ | 参数 | 说明 | 类型 | 可选 | 是否必填 | 默认值 |
599
+ |-------------------|----------------------------------------------------------|-------------------------------------|---------------------------|:----:|---------------------------------|
600
+ | value / v-model | 绑定值 | number,string, Array<number,string> | - | | '' |
601
+ | name | 显示值,有值时覆盖所有显示逻辑,直接显示name | number,string, Array<number,string> | - | | '' |
602
+ | placeholder | 占位符 | string | - | | 请选择 |
603
+ | disabled | 是否禁用 | boolean | - | | false |
604
+ | size | 大小 | enum | large \| default \| small | | default |
605
+ | options | 下拉表的 表内数据,详情见Option接口 | Option[] | - | | [] |
606
+ | total | 总数量 当有值时,出现分页器 | number | null | | null |
607
+ | filterMethod | 自定义搜索方法 (使用时必须传递filterable) | Function | null | | null |
608
+ | filterable | 是否开启筛选 (如果开启但没有传递自定义搜索方法 效果为筛选当前页数据的 keywords[label]) | boolean | - | | false |
609
+ | remote | 是否使用远程搜索 | boolean | - | | false |
610
+ | remoteMethod | 自定义远程搜索方法 (使用时必须传递filterable和remote) | Function | - | | {} |
611
+ | tableTitle | 下拉表的 表头定义,详情见TableTitle接口 | TableTitle[] | - | | [] |
612
+ | multiple | 是否开启多选 | boolean | - | | false |
613
+ | keywords | 关键字配置(value-key 配置)映射关键字 | Option | - | | {label: 'label' ,value:'value'} |
614
+ | reserveSelection | 是否打开翻页多选 需要是多选才有效 | boolean | - | | false |
615
+ | tableHeight | 表格高度 | string | number | | 200 |
616
+ | isAffirmBtn | 是否有确认按钮 当使用此按钮时 selected事件无效 需使用selectMultiple事件 | boolean | - | | false |
617
+ | scrollbarAlwaysOn | 是否常态显示滚动条 | boolean | - | | false |
618
+ | allowCreate | 是否能够创建条目 | boolean | - | | false |
619
+ | popupWidth | 弹窗的宽度 | string,number | - | | 500 |
620
+ | border | 表格边框 | boolean | - | | false |
579
621
 
580
622
  #### Options(选项接口)
581
623
 
582
- | 参数 | 说明 | 类型 | 可选值 | 是否必填 |
583
- | ------------------- | :-----------------------------------: | :---------------: | :----: | :------: |
584
- | label | 选项的标签,若不设置则默认与value相同 | string | - | |
585
- | value | 选项的值 | string \| number | - | |
586
- | disabled | 是否禁用该选项 | boolean | - | |
587
- | \[propName: string] | 额外字段 | string \| number | - | |
624
+ | 参数 | 说明 | 类型 | 可选值 | 是否必填 |
625
+ |---------------------|:---------------------:|:-----------------:|:---:|:----:|
626
+ | label | 选项的标签,若不设置则默认与value相同 | string | - | |
627
+ | value | 选项的值 | string \| number | - | |
628
+ | disabled | 是否禁用该选项 | boolean | - | |
629
+ | \[propName: string] | 额外字段 | string \| number | - | |
588
630
 
589
631
  #### Page (分页对象)
590
632
 
591
- | 参数 | 说明 | 类型 |
592
- | ---------------- | -------------- | -------- |
593
- | total | 总数 | number |
594
- | pageSize | 分页大小 | number |
595
- | currentPage | 页码 | number |
633
+ | 参数 | 说明 | 类型 |
634
+ |------------------|---------|----------|
635
+ | total | 总数 | number |
636
+ | pageSize | 分页大小 | number |
637
+ | currentPage | 页码 | number |
596
638
  | pageSizesOptions | 分页大小可选项 | number[] |
597
639
 
598
640
  ### 3) events
599
641
 
600
- | 事件名 | 说明 | 回调参数 |
601
- | -------------- | -------------------------------------------- | --------------------------------------------------------------------------------------- |
602
- | selected | 单选或多选之后的回调 | 根据多选和单选的模式不同 返回的也有所区别 单选为 (value,row) 多选为(values[],rows[]) |
603
- | toPage | 当没有使用filterMethod时候才会有回调否则没有 | page 表格分页 |
604
- | selectMultiple | 多选确认按钮时的回调 配合isAffirmBtn使用 | (values[],rows[]) |
642
+ | 事件名 | 说明 | 回调参数 |
643
+ |----------------|------------------------------|---------------------------------------------------------------|
644
+ | selected | 单选或多选之后的回调 | 根据多选和单选的模式不同 返回的也有所区别 单选为 (value,row) 多选为(values[],rows[]) |
645
+ | toPage | 当没有使用filterMethod时候才会有回调否则没有 | page 表格分页 |
646
+ | selectMultiple | 多选确认按钮时的回调 配合isAffirmBtn使用 | (values: Array<string \| number>, rows: Option[]) |
647
+ | clear | 用户点击清空按钮时触发 | - |
648
+ | removeTag | 多选模式下移除tag时触发 | (tag: any) |
605
649
 
606
650
  ### 4) Methods
607
651
 
608
- | 方法名 | 说明 |
609
- | -------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
652
+ | 方法名 | 说明 |
653
+ |----------------------|--------------------------------------------------------------------------|
610
654
  | defaultBackFillValue | 手动重载反填 使用场景 当前开启多选 并且开启翻页多选的时候 这个时候需要默认反填上值的话 需要赋值之后 延迟调用此方法 其余场景 为默认反填 |
611
- | clear | 清空已选择 |
612
- | focus | 聚焦下拉框 |
655
+ | clear | 清空已选择 |
656
+ | focus | 聚焦下拉框 |
613
657
 
614
658
  #### filterMethod
615
659
 
616
- | 返回值 | 类型 | 说明 |
617
- | ----------- | ------ | ------------ |
660
+ | 返回值 | 类型 | 说明 |
661
+ |-------------|--------|--------|
618
662
  | searchValue | string | 返回输入的值 |
619
- | Page | Page | 整个分页类 |
663
+ | Page | Page | 整个分页类 |
620
664
 
621
665
  #### remoteMethod
622
666
 
623
- | 返回值 | 类型 | 说明 |
624
- | ----------- | ------ | ------------ |
667
+ | 返回值 | 类型 | 说明 |
668
+ |-------------|--------|--------|
625
669
  | searchValue | string | 返回输入的值 |
626
- | Page | Page | 整个分页类 |
670
+ | Page | Page | 整个分页类 |
627
671
 
628
672
 
629
673
 
package/attributes.json CHANGED
@@ -1 +1 @@
1
- {"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","description":"组件尺寸"},"m-inline/switch":{"type":"[status: boolean]","description":"切换折叠展开事件"},"m-input-number/modelValue":{"type":"string | number","description":""},"m-input-number/placeholder":{"type":"string","description":""},"m-input-number/disabled":{"type":"boolean","description":"是否禁用数值输入框"},"m-input-number/size":{"type":"string","description":"数值输入框尺寸"},"m-input-number/min":{"type":"number","description":"设置数值输入框允许的最小值"},"m-input-number/max":{"type":"number","description":"设置数值输入框允许的最大值"},"m-input-number/step":{"type":"number","description":"数值输入框步长"},"m-input-number/stepStrictly":{"type":"boolean","description":"是否只能输入 step 的倍数"},"m-input-number/thousandthPlace":{"type":"boolean","description":"输入框是否显示千分位"},"m-input-number/noBorder":{"type":"boolean","description":"是否不要边框"},"m-input-number/noSpacing":{"type":"boolean","description":"不要边距"},"m-input-number/update:modelValue":{"type":"any","description":""},"m-input-number/change":{"type":"any","description":""},"m-input-number/focus":{"type":"any","description":""},"m-input-number/blur":{"type":"any","description":""},"m-select/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select/multiple":{"type":"boolean","description":"多选"},"m-select-table/modelValue":{"type":"string | number","description":""},"m-select-table/name":{"type":"string","description":"显示值"},"m-select-table/placeholder":{"type":"string","description":""},"m-select-table/disabled":{"type":"boolean","description":""},"m-select-table/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table/total":{"type":"number | null","description":""},"m-select-table/filterMethod":{"type":"Function | null","description":"自定义搜索"},"m-select-table/filterable":{"type":"boolean","description":"是否使用搜索"},"m-select-table/remote":{"type":"boolean","description":"是否使用 远程搜索"},"m-select-table/remoteMethod":{"type":"Function","description":""},"m-select-table/options":{"type":"Option[]","description":""},"m-select-table/tableTitle":{"type":"any[]","description":""},"m-select-table/multiple":{"type":"boolean","description":"是否多选"},"m-select-table/keywords":{"type":"Option","description":"定义默认的 label 和value"},"m-select-table/reserveSelection":{"type":"boolean","description":"是否开启翻页多选"},"m-select-table/tableHeight":{"type":"string | number","description":""},"m-select-table/isAffirmBtn":{"type":"boolean","description":"是否有确认按钮"},"m-select-table/scrollbarAlwaysOn":{"type":"boolean","description":""},"m-select-table/allowCreate":{"type":"boolean","description":""},"m-select-table/border":{"type":"boolean","description":"表格边框"},"m-select-table/popupWidth":{"type":"number | string","description":"弹窗的宽度"},"m-select-table/selected":{"type":"any","description":""},"m-select-table/selectMultiple":{"type":"any","description":""},"m-select-table/toPage":{"type":"any","description":""},"m-select-table/update:modelValue":{"type":"any","description":""},"m-select-table/focusShow":{"type":"boolean","description":""},"m-select-table/isSelect":{"type":"boolean","description":""},"m-select-table/clearable":{"type":"boolean","description":""},"m-select-table/labelKey":{"type":"string","description":""},"m-select-table/change":{"type":"any","description":""},"m-select-table/clear":{"type":"any","description":""},"m-select-v2/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select-v2/multiple":{"type":"boolean","description":"多选"},"m-select-v2/showAll":{"type":"boolean","description":"是否显示全选"},"m-select-v2/options":{"type":"Option[]","description":"选项"},"m-select-v2/update:modelValue":{"type":"[data: any]","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Array<{\n [key: string]: string | number\n }>","description":""},"m-table/filtersValue":{"type":"FilterValue","description":""},"m-table/pasteData":{"type":"[data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any\n }>]","description":""},"m-table-column/filtersValue":{"type":"FilterValue","description":""},"m-table-column/filters":{"type":"Array<{ text: string | number, value: string | number }>","description":""},"m-table-column/filterMethod":{"type":"Function","description":""},"m-table-column/children":{"type":"Array<PropChildren>","description":""},"m-table-column/update:filtersValue":{"type":"any","description":""},"m-table-column-set/modelValue":{"type":"TableConfig","description":""},"m-table-column-set/foldMode":{"type":"boolean","description":""},"m-table-column-set/link":{"type":"boolean","description":"是否为链接按钮"},"m-table-column-set/update:modelValue":{"type":"any","description":""},"skin-config/change":{"type":"any","description":""},"tab-page/modelValue":{"type":"MenuItem[]","description":""},"tab-page/activeKey":{"type":"string","description":""},"tab-page/showRightClickMenu":{"type":"boolean","description":""},"tab-page/primaryColor":{"type":"string","description":""},"tab-page/primaryBackgroundColor":{"type":"string | null","description":""},"tab-page/close":{"type":"any","description":""},"tab-page/click":{"type":"any","description":""}}
1
+ {"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","description":"组件尺寸"},"m-inline/switch":{"type":"[status: boolean]","description":"切换折叠展开事件"},"m-input-number/modelValue":{"type":"string | number","description":""},"m-input-number/placeholder":{"type":"string","description":""},"m-input-number/disabled":{"type":"boolean","description":"是否禁用数值输入框"},"m-input-number/size":{"type":"string","description":"数值输入框尺寸"},"m-input-number/min":{"type":"number","description":"设置数值输入框允许的最小值"},"m-input-number/max":{"type":"number","description":"设置数值输入框允许的最大值"},"m-input-number/step":{"type":"number","description":"数值输入框步长"},"m-input-number/stepStrictly":{"type":"boolean","description":"是否只能输入 step 的倍数"},"m-input-number/thousandthPlace":{"type":"boolean","description":"输入框是否显示千分位"},"m-input-number/noBorder":{"type":"boolean","description":"是否不要边框"},"m-input-number/noSpacing":{"type":"boolean","description":"不要边距"},"m-input-number/update:modelValue":{"type":"any","description":""},"m-input-number/change":{"type":"any","description":""},"m-input-number/focus":{"type":"any","description":""},"m-input-number/blur":{"type":"any","description":""},"m-select/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select/multiple":{"type":"boolean","description":"多选"},"m-select-table/modelValue":{"type":"string | number","description":""},"m-select-table/name":{"type":"string | number | Array<number | string>","description":"显示值"},"m-select-table/placeholder":{"type":"string","description":""},"m-select-table/disabled":{"type":"boolean","description":""},"m-select-table/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table/total":{"type":"number | null","description":""},"m-select-table/filterMethod":{"type":"Function | null","description":"自定义搜索"},"m-select-table/filterable":{"type":"boolean","description":"是否使用搜索"},"m-select-table/remote":{"type":"boolean","description":"是否使用 远程搜索"},"m-select-table/remoteMethod":{"type":"Function","description":""},"m-select-table/options":{"type":"Option[]","description":""},"m-select-table/tableTitle":{"type":"any[]","description":""},"m-select-table/multiple":{"type":"boolean","description":"是否多选"},"m-select-table/keywords":{"type":"Option","description":"定义默认的 label 和value"},"m-select-table/reserveSelection":{"type":"boolean","description":"是否开启翻页多选"},"m-select-table/tableHeight":{"type":"string | number","description":""},"m-select-table/isAffirmBtn":{"type":"boolean","description":"是否有确认按钮"},"m-select-table/scrollbarAlwaysOn":{"type":"boolean","description":""},"m-select-table/allowCreate":{"type":"boolean","description":""},"m-select-table/border":{"type":"boolean","description":"表格边框"},"m-select-table/popupWidth":{"type":"number | string","description":"弹窗的宽度"},"m-select-table/selected":{"type":"any","description":""},"m-select-table/selectMultiple":{"type":"any","description":""},"m-select-table/toPage":{"type":"[page: Page, query?: string]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/update:modelValue":{"type":"any","description":""},"m-select-table/clear":{"type":"any","description":""},"m-select-table/removeTag":{"type":"[tag: any]","description":"多选模式下移除tag时触发"},"m-select-table/focusShow":{"type":"boolean","description":""},"m-select-table/isSelect":{"type":"boolean","description":""},"m-select-table/clearable":{"type":"boolean","description":""},"m-select-table/labelKey":{"type":"string","description":""},"m-select-table/change":{"type":"any","description":""},"m-select-v2/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select-v2/multiple":{"type":"boolean","description":"多选"},"m-select-v2/showAll":{"type":"boolean","description":"是否显示全选"},"m-select-v2/options":{"type":"Option[]","description":"选项"},"m-select-v2/update:modelValue":{"type":"[data: any]","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Array<{\n [key: string]: string | number\n }>","description":""},"m-table/filtersValue":{"type":"FilterValue","description":""},"m-table/pasteData":{"type":"[data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any\n }>]","description":""},"m-table-column/filtersValue":{"type":"FilterValue","description":""},"m-table-column/filters":{"type":"Array<{ text: string | number, value: string | number }>","description":""},"m-table-column/filterMethod":{"type":"Function","description":""},"m-table-column/children":{"type":"Array<PropChildren>","description":""},"m-table-column/update:filtersValue":{"type":"any","description":""},"m-table-column-set/modelValue":{"type":"TableConfig","description":""},"m-table-column-set/foldMode":{"type":"boolean","description":""},"m-table-column-set/link":{"type":"boolean","description":"是否为链接按钮"},"m-table-column-set/update:modelValue":{"type":"any","description":""},"skin-config/change":{"type":"any","description":""},"tab-page/modelValue":{"type":"MenuItem[]","description":""},"tab-page/activeKey":{"type":"string","description":""},"tab-page/showRightClickMenu":{"type":"boolean","description":""},"tab-page/primaryColor":{"type":"string","description":""},"tab-page/primaryBackgroundColor":{"type":"string | null","description":""},"tab-page/close":{"type":"any","description":""},"tab-page/click":{"type":"any","description":""}}