@leevan/jtui 2.0.49 → 2.0.51
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/lib/jtui.common.js +6 -6
- package/lib/jtui.css +1 -1
- package/lib/jtui.umd.js +6 -6
- package/lib/jtui.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/jt-table/index.vue +17 -13
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
</div>
|
|
22
22
|
<!-- 普通表格 -->
|
|
23
23
|
<vxe-table
|
|
24
|
-
class="jt-table-class-only
|
|
24
|
+
class="jt-table-class-only"
|
|
25
25
|
height="auto"
|
|
26
26
|
size="mini"
|
|
27
27
|
show-overflow
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
</vxe-table>
|
|
204
204
|
<!-- 大数据 -->
|
|
205
205
|
<vxe-table
|
|
206
|
-
class="jt-table-class-only
|
|
206
|
+
class="jt-table-class-only"
|
|
207
207
|
height="auto"
|
|
208
208
|
size="mini"
|
|
209
209
|
show-overflow
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
<!-- 分组表格 -->
|
|
374
374
|
<vxe-table
|
|
375
375
|
size="mini"
|
|
376
|
-
class="jt-table-class-only
|
|
376
|
+
class="jt-table-class-only"
|
|
377
377
|
:id="id"
|
|
378
378
|
:ref="id"
|
|
379
379
|
empty-text=" "
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
<!-- 树形表格 and 树 -->
|
|
515
515
|
<vxe-table
|
|
516
516
|
size="mini"
|
|
517
|
-
class="jt-table-class-only
|
|
517
|
+
class="jt-table-class-only"
|
|
518
518
|
:id="id"
|
|
519
519
|
:ref="id"
|
|
520
520
|
:stripe="stripe"
|
|
@@ -1770,13 +1770,17 @@ export default {
|
|
|
1770
1770
|
transform: translate(-50%,-50%);
|
|
1771
1771
|
z-index:999;
|
|
1772
1772
|
}
|
|
1773
|
-
.table-2-repair{
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
}
|
|
1773
|
+
// .table-2-repair{
|
|
1774
|
+
// .col--checkbox{
|
|
1775
|
+
// .vxe-cell{
|
|
1776
|
+
// overflow: visible !important;
|
|
1777
|
+
// }
|
|
1778
|
+
// .vxe-cell--checkbox{
|
|
1779
|
+
// height:14px !important;
|
|
1780
|
+
// }
|
|
1781
|
+
// }
|
|
1782
|
+
// .vxe-cell{
|
|
1783
|
+
// display: inline-block !important;
|
|
1784
|
+
// }
|
|
1785
|
+
// }
|
|
1782
1786
|
</style>
|