sohelp-eleplus 1.1.18 → 1.1.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 +24 -0
- package/cache/ModuleCache.js +2 -32
- package/package.json +1 -1
- package/sohelp-entity-grid/index.vue +3 -3
- package/sohelp-grid/index.vue +94 -19
- package/sohelp-grid/js/DefaultGridOptions.js +5 -1
- package/sohelp-grid/js/DefaultProps.js +3 -3
- package/sohelp-grid/js/useSohelpGridConfig.js +7 -1
- package/sohelp-grid-select/index.vue +2 -2
- package/sohelp-grid-view/filter/filter-form.vue +31 -12
- package/sohelp-grid-view/filter/index.vue +1 -1
- package/sohelp-icon-select/index.vue +2 -2
- package/sohelp-modal/index.vue +28 -21
- package/sohelp-module/useSohelpModule.js +9 -11
- package/sohelp-org-user-tree/index.vue +1 -1
- package/sohelp-table/index.vue +3 -3
- package/sohelp-vform-drawer/index.vue +1 -1
- package/sohelp-vxe-grid/DefaultGridOptions.js +7 -16
- package/sohelp-vxe-grid/DefaultProps.js +10 -20
- package/sohelp-vxe-grid/SohelpGridConfig.js +28 -27
- package/sohelp-vxe-grid/index.vue +397 -440
- package/sohelp-vxe-table/index.vue +3 -3
- package/style/index.scss +0 -0
|
@@ -41,18 +41,18 @@
|
|
|
41
41
|
/**网格列表配置ID*/
|
|
42
42
|
refid: {
|
|
43
43
|
type: String,
|
|
44
|
-
|
|
44
|
+
default: '',
|
|
45
45
|
required: true
|
|
46
46
|
},
|
|
47
47
|
/**数据源URL**/
|
|
48
48
|
url: {
|
|
49
49
|
type: String,
|
|
50
|
-
|
|
50
|
+
default: ''
|
|
51
51
|
},
|
|
52
52
|
/**数据源URL**/
|
|
53
53
|
where: {
|
|
54
54
|
type: Object,
|
|
55
|
-
|
|
55
|
+
default: {}
|
|
56
56
|
},
|
|
57
57
|
drag: {
|
|
58
58
|
type: Boolean,
|
package/style/index.scss
DELETED
|
File without changes
|