br-dionysus 1.6.2 → 1.6.4
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 +0 -10
- package/dist/br-dionysus.es.js +1119 -1112
- package/dist/br-dionysus.umd.js +1 -1
- package/package.json +1 -1
- package/packages/Hook/useTableConfig/demo.vue +1 -1
- package/packages/MSelectTable/docs/demo.vue +0 -5
- package/packages/MSelectTable/src/MSelectTable.vue +7 -1
- package/web-types.json +1 -1
package/README.md
CHANGED
|
@@ -477,7 +477,6 @@ const options: Option[] = [{
|
|
|
477
477
|
multiple
|
|
478
478
|
border
|
|
479
479
|
:remoteMethod="remoteMethod"
|
|
480
|
-
@clear="test"
|
|
481
480
|
></m-select-table>
|
|
482
481
|
<p>单选</p>
|
|
483
482
|
<p>第三个择器的值: {{ code3 }}</p>
|
|
@@ -519,10 +518,6 @@ const options: Option[] = [{
|
|
|
519
518
|
import { ref, onMounted } from 'vue'
|
|
520
519
|
import { Page } from 'packages/typings/class'
|
|
521
520
|
|
|
522
|
-
const test = () => {
|
|
523
|
-
console.log('xxx')
|
|
524
|
-
}
|
|
525
|
-
|
|
526
521
|
const commodityOptionsTitle: TableTitle[] = [{
|
|
527
522
|
prop: 'PRDocType',
|
|
528
523
|
label: '单据类型'
|
|
@@ -2556,7 +2551,6 @@ const options: Option[] = [{
|
|
|
2556
2551
|
multiple
|
|
2557
2552
|
border
|
|
2558
2553
|
:remoteMethod="remoteMethod"
|
|
2559
|
-
@clear="test"
|
|
2560
2554
|
></m-select-table>
|
|
2561
2555
|
<p>单选</p>
|
|
2562
2556
|
<p>第三个择器的值: {{ code3 }}</p>
|
|
@@ -2598,10 +2592,6 @@ const options: Option[] = [{
|
|
|
2598
2592
|
import { ref, onMounted } from 'vue'
|
|
2599
2593
|
import { Page } from 'packages/typings/class'
|
|
2600
2594
|
|
|
2601
|
-
const test = () => {
|
|
2602
|
-
console.log('xxx')
|
|
2603
|
-
}
|
|
2604
|
-
|
|
2605
2595
|
const commodityOptionsTitle: TableTitle[] = [{
|
|
2606
2596
|
prop: 'PRDocType',
|
|
2607
2597
|
label: '单据类型'
|