doway-coms 3.2.2 → 3.2.3
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 +1 -1
- package/packages/BaseDate/src/index.vue +1 -1
- package/packages/BaseDateMonth/src/index.vue +1 -1
- package/packages/BaseDateWeek/src/index.vue +1 -1
- package/packages/BaseDatetime/src/index.vue +1 -1
- package/packages/BaseGantt/index.js +1 -1
- package/packages/BaseGrid/index.js +1 -1
- package/packages/BaseGrid/src/index.vue +1 -1
- package/packages/BaseGridAdjust/index.js +1 -1
- package/packages/BaseGridAdjust/src/index.vue +1 -1
- package/packages/BaseInput/src/index.vue +1 -1
- package/packages/BasePictureCard/src/index.vue +1 -1
- package/packages/BaseTextArea/src/index.vue +1 -1
- package/packages/BaseTime/src/index.vue +1 -1
- package/packages/index.js +2 -2
- package/packages/utils/gridFormat.js +1 -1
package/package.json
CHANGED
|
@@ -785,7 +785,7 @@ import { mapGetters } from 'vuex'
|
|
|
785
785
|
//xe-utils提供了一套实用的基础函数、任意格式的日期转换函数,浏览器相关操作函数等,详细使用百度
|
|
786
786
|
import XEUtils from 'xe-utils'
|
|
787
787
|
//VXETable插件
|
|
788
|
-
import VXETable from 'vxe-table'
|
|
788
|
+
import VXETable from 'doway-vxe-table'
|
|
789
789
|
import { Tooltip } from 'ant-design-vue'
|
|
790
790
|
//ant的空状态展示占位图
|
|
791
791
|
import {
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
import { notification, Upload,Spin } from "ant-design-vue";
|
|
163
163
|
import { sysRowState } from "../../utils/enum";
|
|
164
164
|
import clickoutside from '../../directive/clickoutside'
|
|
165
|
-
import { Checkbox, Modal } from "vxe-table";
|
|
165
|
+
import { Checkbox, Modal } from "doway-vxe-table";
|
|
166
166
|
import { attachGetAttachUrlApi, attachSearchApi } from "../../utils/api";
|
|
167
167
|
import request from '../../utils/request'
|
|
168
168
|
export default {
|
package/packages/index.js
CHANGED
|
@@ -65,8 +65,8 @@ const components = [
|
|
|
65
65
|
]
|
|
66
66
|
// 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
67
67
|
|
|
68
|
-
import 'vxe-table/lib/style.css'
|
|
69
|
-
import VXETable from 'vxe-table'
|
|
68
|
+
import 'doway-vxe-table/lib/style.css'
|
|
69
|
+
import VXETable from 'doway-vxe-table'
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
import VxeUI from 'vxe-pc-ui'
|