@leevan/jtui 2.0.43 → 2.0.44
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/examples/tableTest/table-ptbg.vue +33 -4
- package/lib/jtui.common.js +87567 -128787
- package/lib/jtui.css +1 -1
- package/lib/jtui.umd.js +87567 -128787
- package/lib/jtui.umd.min.js +87 -87
- package/package.json +3 -3
- package/packages/index.js +5 -10
- package/packages/jt-table/data2.js +10690 -0
- package/packages/jt-table/filter.js +3 -0
- package/packages/jt-table/index.vue +34 -40
- package/lib/fonts/iconfont.1761545705692.5cf21f71.ttf +0 -0
- package/lib/fonts/iconfont.1761545705692.88bca599.woff +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leevan/jtui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.44",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"serve": "vue-cli-service serve",
|
|
6
6
|
"build": "vue-cli-service build",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"vue-furcate-tree": "^1.0.0",
|
|
49
49
|
"vue-simple-uploader": "^0.7.4",
|
|
50
50
|
"vxe-pc-ui": "3.10.12",
|
|
51
|
-
"vxe-table": "
|
|
51
|
+
"vxe-table": "2.11.0",
|
|
52
52
|
"vxe-table-plugin-export-xlsx": "^2.2.1",
|
|
53
|
-
"xe-utils": "3.
|
|
53
|
+
"xe-utils": "3.5.31",
|
|
54
54
|
"xlsx": "^0.17.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
package/packages/index.js
CHANGED
|
@@ -14,20 +14,15 @@ import JtOrgtreePc from './jt-orgtree-pc'
|
|
|
14
14
|
import SearchType from './Search-Type/index.js';
|
|
15
15
|
|
|
16
16
|
//vex-table样式
|
|
17
|
-
import 'vxe-table/lib/style.css'
|
|
18
|
-
import
|
|
19
|
-
|
|
20
|
-
import VxeUIPluginExportXLSX from '@vxe-ui/plugin-export-xlsx'
|
|
21
|
-
import ExcelJS from 'exceljs'
|
|
17
|
+
import 'vxe-table/lib/style.css';
|
|
18
|
+
import VXETable from 'vxe-table';
|
|
19
|
+
|
|
22
20
|
import 'vxe-pc-ui/lib/style.css'
|
|
23
21
|
import './jt-table/filter.js';
|
|
24
22
|
import './jt-table/comp.js';
|
|
25
23
|
import 'xe-utils';
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
})
|
|
29
|
-
Vue.use(VxeUIBase)
|
|
30
|
-
Vue.use(VxeUITable);
|
|
24
|
+
|
|
25
|
+
Vue.use(VXETable)
|
|
31
26
|
|
|
32
27
|
//moment.js
|
|
33
28
|
import moment from 'moment'//导入文件
|