doway-coms 3.0.4 → 3.0.5

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div>
3
- <vxe-modal
3
+ <VxeModal
4
4
  v-model="showExport"
5
5
  :title="exportTitle"
6
6
  show-zoom
@@ -22,7 +22,7 @@
22
22
  <template #footer>
23
23
  <Button type="primary" size="small" @click="confirmExport">确认导出</Button>
24
24
  </template>
25
- </vxe-modal>
25
+ </VxeModal>
26
26
  </div>
27
27
  </template>
28
28
 
@@ -32,12 +32,13 @@ import XEUtils from 'xe-utils';
32
32
  import { controlType } from '../../utils/enum';
33
33
  import draggable from 'vuedraggable';
34
34
  import { Button } from 'ant-design-vue';
35
-
35
+ import { VxeModal} from 'vxe-pc-ui'
36
36
  export default {
37
37
  name: 'commonExportCmp',
38
38
  components: {
39
39
  draggable,
40
- Button
40
+ Button,
41
+ VxeModal
41
42
  },
42
43
  props: {
43
44
  objectService: {
@@ -1897,6 +1897,10 @@ export default {
1897
1897
  if (originCol.treeNode === true) {
1898
1898
  colInfo['treeNode'] = true
1899
1899
  }
1900
+ if(originCol.dragSort===true){
1901
+ //行拖拽
1902
+ colInfo['dragSort'] = true
1903
+ }
1900
1904
  if (originCol.isMerge === true) {
1901
1905
  //合并行
1902
1906
  this.mergeFields.push(originCol.field)
@@ -28,12 +28,12 @@
28
28
  </template>
29
29
  <script>
30
30
  import { Pagination } from 'ant-design-vue'
31
- import { Pager } from "vxe-table";
31
+ import { VxePager } from "vxe-pc-ui";
32
32
 
33
33
  export default {
34
34
  components: {
35
35
  Pagination,
36
- Pager
36
+ VxePager
37
37
  },
38
38
  name: 'BasePagination',
39
39
  data() {