cnhis-design-vue 3.0.4 → 3.0.7
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/CHANGELOG.md +22 -0
- package/es/big-table/index.js +197 -132
- package/es/button-print/index.css +31 -31
- package/es/button-print/index.js +30 -128
- package/es/drag-layout/index.css +31 -31
- package/es/field-set/index.css +73 -73
- package/es/grid/index.css +73 -73
- package/es/index.js +226 -259
- package/package.json +1 -1
- package/packages/big-table/src/BigTable.vue +18 -20
- package/packages/big-table/src/bigTableEmits.ts +1 -2
- package/packages/big-table/src/components/edit-form/edit-date.vue +41 -0
- package/packages/big-table/src/components/edit-form/edit-input.vue +2 -2
- package/packages/big-table/src/components/edit-form/edit-select.vue +12 -3
- package/packages/big-table/src/hooks/useEdit.ts +16 -4
- package/packages/button-print/src/ButtonPrint.vue +39 -128
- package/packages/select-person/index.ts +11 -0
- package/packages/select-person/src/SelectPerson.vue +746 -0
package/es/grid/index.css
CHANGED
|
@@ -506,37 +506,6 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
506
506
|
height: 20px;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
-
.text-over-tooltip-components[data-v-6633a934] {
|
|
510
|
-
display: inline-block;
|
|
511
|
-
max-width: 98%;
|
|
512
|
-
/* 文字超出宽度显示省略号 单行 */
|
|
513
|
-
/* 自定义样式 */
|
|
514
|
-
}
|
|
515
|
-
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] {
|
|
516
|
-
font-size: 14px;
|
|
517
|
-
color: #35393c;
|
|
518
|
-
overflow: hidden;
|
|
519
|
-
text-overflow: ellipsis;
|
|
520
|
-
white-space: nowrap;
|
|
521
|
-
}
|
|
522
|
-
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] i[data-v-6633a934] {
|
|
523
|
-
font-style: normal;
|
|
524
|
-
word-break: keep-all;
|
|
525
|
-
white-space: nowrap;
|
|
526
|
-
}
|
|
527
|
-
.text-over-tooltip-components[data-v-6633a934] .fs20[data-v-6633a934] {
|
|
528
|
-
font-size: 20px;
|
|
529
|
-
font-weight: 600;
|
|
530
|
-
color: green;
|
|
531
|
-
line-height: 22px;
|
|
532
|
-
}
|
|
533
|
-
.text-over-tooltip-components[data-v-6633a934] .fs12[data-v-6633a934] {
|
|
534
|
-
font-size: 12px;
|
|
535
|
-
font-weight: 400;
|
|
536
|
-
color: orange;
|
|
537
|
-
line-height: 14px;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
509
|
.no-data-tip[data-v-4a4b0812] {
|
|
541
510
|
display: -webkit-box;
|
|
542
511
|
display: -webkit-flex;
|
|
@@ -576,6 +545,37 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
576
545
|
margin-top: 6px;
|
|
577
546
|
}
|
|
578
547
|
|
|
548
|
+
.text-over-tooltip-components[data-v-6633a934] {
|
|
549
|
+
display: inline-block;
|
|
550
|
+
max-width: 98%;
|
|
551
|
+
/* 文字超出宽度显示省略号 单行 */
|
|
552
|
+
/* 自定义样式 */
|
|
553
|
+
}
|
|
554
|
+
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] {
|
|
555
|
+
font-size: 14px;
|
|
556
|
+
color: #35393c;
|
|
557
|
+
overflow: hidden;
|
|
558
|
+
text-overflow: ellipsis;
|
|
559
|
+
white-space: nowrap;
|
|
560
|
+
}
|
|
561
|
+
.text-over-tooltip-components[data-v-6633a934] .ellipsis[data-v-6633a934] i[data-v-6633a934] {
|
|
562
|
+
font-style: normal;
|
|
563
|
+
word-break: keep-all;
|
|
564
|
+
white-space: nowrap;
|
|
565
|
+
}
|
|
566
|
+
.text-over-tooltip-components[data-v-6633a934] .fs20[data-v-6633a934] {
|
|
567
|
+
font-size: 20px;
|
|
568
|
+
font-weight: 600;
|
|
569
|
+
color: green;
|
|
570
|
+
line-height: 22px;
|
|
571
|
+
}
|
|
572
|
+
.text-over-tooltip-components[data-v-6633a934] .fs12[data-v-6633a934] {
|
|
573
|
+
font-size: 12px;
|
|
574
|
+
font-weight: 400;
|
|
575
|
+
color: orange;
|
|
576
|
+
line-height: 14px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
579
|
|
|
580
580
|
.svg-icon[data-v-d1ad5be8] {
|
|
581
581
|
width: 1em;
|
|
@@ -731,48 +731,6 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
731
731
|
z-index: 2001;
|
|
732
732
|
}
|
|
733
733
|
|
|
734
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] {
|
|
735
|
-
width: 100%;
|
|
736
|
-
margin-bottom: 16px;
|
|
737
|
-
overflow: hidden;
|
|
738
|
-
cursor: pointer;
|
|
739
|
-
color: #2e2e2e;
|
|
740
|
-
}
|
|
741
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] {
|
|
742
|
-
display: -webkit-box;
|
|
743
|
-
display: -webkit-flex;
|
|
744
|
-
display: -ms-flexbox;
|
|
745
|
-
display: flex;
|
|
746
|
-
-webkit-box-pack: center;
|
|
747
|
-
-webkit-justify-content: center;
|
|
748
|
-
-ms-flex-pack: center;
|
|
749
|
-
justify-content: center;
|
|
750
|
-
-webkit-box-align: center;
|
|
751
|
-
-webkit-align-items: center;
|
|
752
|
-
-ms-flex-align: center;
|
|
753
|
-
align-items: center;
|
|
754
|
-
width: 100%;
|
|
755
|
-
height: 60px;
|
|
756
|
-
padding: 0 8px;
|
|
757
|
-
-webkit-box-sizing: border-box;
|
|
758
|
-
box-sizing: border-box;
|
|
759
|
-
margin-bottom: 8px;
|
|
760
|
-
background: #f3f5f8;
|
|
761
|
-
}
|
|
762
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966]-input[data-v-55852966] {
|
|
763
|
-
width: 85%;
|
|
764
|
-
overflow: hidden;
|
|
765
|
-
text-overflow: ellipsis;
|
|
766
|
-
white-space: nowrap;
|
|
767
|
-
cursor: pointer !important;
|
|
768
|
-
}
|
|
769
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"][disabled][data-v-55852966],
|
|
770
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"][disabled][data-v-55852966],
|
|
771
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"].disabled[data-v-55852966],
|
|
772
|
-
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"].disabled[data-v-55852966] {
|
|
773
|
-
cursor: pointer !important;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
734
|
.DragFormRightItem[data-v-2d9603cc] {
|
|
777
735
|
position: relative;
|
|
778
736
|
}
|
|
@@ -844,6 +802,48 @@ body > .vxe-table--tooltip-wrapper {
|
|
|
844
802
|
color: red;
|
|
845
803
|
}
|
|
846
804
|
|
|
805
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] {
|
|
806
|
+
width: 100%;
|
|
807
|
+
margin-bottom: 16px;
|
|
808
|
+
overflow: hidden;
|
|
809
|
+
cursor: pointer;
|
|
810
|
+
color: #2e2e2e;
|
|
811
|
+
}
|
|
812
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] {
|
|
813
|
+
display: -webkit-box;
|
|
814
|
+
display: -webkit-flex;
|
|
815
|
+
display: -ms-flexbox;
|
|
816
|
+
display: flex;
|
|
817
|
+
-webkit-box-pack: center;
|
|
818
|
+
-webkit-justify-content: center;
|
|
819
|
+
-ms-flex-pack: center;
|
|
820
|
+
justify-content: center;
|
|
821
|
+
-webkit-box-align: center;
|
|
822
|
+
-webkit-align-items: center;
|
|
823
|
+
-ms-flex-align: center;
|
|
824
|
+
align-items: center;
|
|
825
|
+
width: 100%;
|
|
826
|
+
height: 60px;
|
|
827
|
+
padding: 0 8px;
|
|
828
|
+
-webkit-box-sizing: border-box;
|
|
829
|
+
box-sizing: border-box;
|
|
830
|
+
margin-bottom: 8px;
|
|
831
|
+
background: #f3f5f8;
|
|
832
|
+
}
|
|
833
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966]-input[data-v-55852966] {
|
|
834
|
+
width: 85%;
|
|
835
|
+
overflow: hidden;
|
|
836
|
+
text-overflow: ellipsis;
|
|
837
|
+
white-space: nowrap;
|
|
838
|
+
cursor: pointer !important;
|
|
839
|
+
}
|
|
840
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"][disabled][data-v-55852966],
|
|
841
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"][disabled][data-v-55852966],
|
|
842
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="radio"].disabled[data-v-55852966],
|
|
843
|
+
.DragFormLeftItem[data-v-55852966] .left-content[data-v-55852966] .style-box[data-v-55852966] input[type="checkbox"].disabled[data-v-55852966] {
|
|
844
|
+
cursor: pointer !important;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
847
|
ul[data-v-726261b7] {
|
|
848
848
|
margin: 0;
|
|
849
849
|
padding: 0;
|