doway-coms 3.0.7 → 3.0.8
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/package.json
CHANGED
|
@@ -83,18 +83,17 @@
|
|
|
83
83
|
|
|
84
84
|
<script>
|
|
85
85
|
import { notification, Upload, Tree, Icon, Popconfirm, Input } from "ant-design-vue";
|
|
86
|
-
import {
|
|
86
|
+
import { VxeCheckbox, VxeModal } from "vxe-pc-ui";
|
|
87
87
|
import { attachGetAttachUrlApi, attachSearchApi } from "../../utils/api";
|
|
88
88
|
import XEUtils from 'xe-utils'
|
|
89
89
|
import { Splitpanes, Pane } from 'splitpanes'
|
|
90
90
|
import 'splitpanes/dist/splitpanes.css'
|
|
91
|
-
|
|
92
91
|
export default {
|
|
93
92
|
name: "BaseFileGroup",
|
|
94
93
|
components: {
|
|
95
|
-
VxeCheckbox
|
|
94
|
+
VxeCheckbox,
|
|
96
95
|
"a-upload": Upload,
|
|
97
|
-
VxeModal:
|
|
96
|
+
VxeModal: VxeModal,
|
|
98
97
|
Splitpanes, Pane,
|
|
99
98
|
'a-tree': Tree,
|
|
100
99
|
'a-icon': Icon,
|
|
@@ -1897,6 +1897,9 @@ export default {
|
|
|
1897
1897
|
if (originCol.treeNode === true) {
|
|
1898
1898
|
colInfo['treeNode'] = true
|
|
1899
1899
|
}
|
|
1900
|
+
if (originCol.dragSort === true) {
|
|
1901
|
+
colInfo['dragSort'] = true
|
|
1902
|
+
}
|
|
1900
1903
|
if (originCol.isMerge === true) {
|
|
1901
1904
|
//合并行
|
|
1902
1905
|
this.mergeFields.push(originCol.field)
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<!-- @change="onPageChange"-->
|
|
14
14
|
<!-- :show-total="total => `总共 ${totalRows} 条`"-->
|
|
15
15
|
<!-- />-->
|
|
16
|
-
<
|
|
16
|
+
<VxePager
|
|
17
17
|
background
|
|
18
18
|
:current-page="currentPage"
|
|
19
19
|
:page-size="pageSize"
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
</template>
|
|
29
29
|
<script>
|
|
30
30
|
import { Pagination } from 'ant-design-vue'
|
|
31
|
-
import {
|
|
31
|
+
import { VxePager } from "vxe-pc-ui";
|
|
32
32
|
|
|
33
33
|
export default {
|
|
34
34
|
components: {
|
|
35
35
|
Pagination,
|
|
36
|
-
|
|
36
|
+
VxePager
|
|
37
37
|
},
|
|
38
38
|
name: 'BasePagination',
|
|
39
39
|
data() {
|