tplus-components-touch 3.27.29 → 3.27.33

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.
Files changed (47) hide show
  1. package/dist/components/billSearch/index.js +163 -20
  2. package/dist/components/billSearch/index.js.map +1 -1
  3. package/dist/components/billSearch/index.less +6 -3
  4. package/dist/components/cloudPrint/api.js +85 -43
  5. package/dist/components/cloudPrint/api.js.map +1 -1
  6. package/dist/components/cloudPrint/printDispatch.js +211 -108
  7. package/dist/components/cloudPrint/printDispatch.js.map +1 -1
  8. package/dist/components/deliverySearch/index.js +1 -1
  9. package/dist/components/deliverySearch/index.js.map +1 -1
  10. package/dist/components/hotKey/localConfig.js +133 -14
  11. package/dist/components/hotKey/localConfig.js.map +1 -1
  12. package/dist/components/inventorySearch/tab.js +77 -67
  13. package/dist/components/inventorySearch/tab.js.map +1 -1
  14. package/dist/components/keyboard/numberButton_input.js +4 -2
  15. package/dist/components/keyboard/numberButton_input.js.map +1 -1
  16. package/dist/components/keyboard/onlyLetterButton2.less +35 -40
  17. package/dist/components/loading/loadingContent.js +1 -1
  18. package/dist/components/loading/loadingContent.js.map +1 -1
  19. package/dist/components/loading/style.less +7 -7
  20. package/dist/components/progressState/EmptyAndErrorView.js +4 -3
  21. package/dist/components/progressState/EmptyAndErrorView.js.map +1 -1
  22. package/dist/components/progressState/ProgressState.js +2 -1
  23. package/dist/components/progressState/ProgressState.js.map +1 -1
  24. package/dist/components/settlement/moreCzkTable/index.js +156 -0
  25. package/dist/components/settlement/moreCzkTable/index.js.map +1 -0
  26. package/dist/components/settlement/moreCzkTable/style.less +7 -0
  27. package/dist/components/settlement/settlement.js +764 -510
  28. package/dist/components/settlement/settlement.js.map +1 -1
  29. package/dist/components/settlement/settlement.less +77 -7
  30. package/dist/components/settlement/settlementStore.js +559 -318
  31. package/dist/components/settlement/settlementStore.js.map +1 -1
  32. package/dist/components/ticon/iconfont/demo_index.html +26 -3
  33. package/dist/components/ticon/iconfont/iconfont.css +7 -3
  34. package/dist/components/ticon/iconfont/iconfont.js +6 -6
  35. package/dist/components/ticon/iconfont/iconfont.js.map +1 -1
  36. package/dist/components/ticon/iconfont/iconfont.json +7 -0
  37. package/dist/components/ticon/iconfont/iconfont.ttf +0 -0
  38. package/dist/components/ticon/iconfont/iconfont.woff +0 -0
  39. package/dist/components/ticon/iconfont/iconfont.woff2 +0 -0
  40. package/dist/components/touchScroll/index.js +6 -2
  41. package/dist/components/touchScroll/index.js.map +1 -1
  42. package/dist/components/touchTable/index.js +7 -5
  43. package/dist/components/touchTable/index.js.map +1 -1
  44. package/dist/components/touchTable/index.less +20 -13
  45. package/dist/index.js +14 -2
  46. package/dist/index.js.map +1 -1
  47. package/package.json +1 -1
@@ -1,6 +1,24 @@
1
1
  .asyncModal[role='dialog'] {
2
2
  z-index: 1006 !important;
3
3
  }
4
+ .moreCzkModal {
5
+ .ant-modal {
6
+ width: 800px !important;
7
+ .ant-modal-body {
8
+ height: 376px !important;
9
+ padding: 0;
10
+ }
11
+ .showUseCard {
12
+ font-family: 'PingFangSC-Regular';
13
+ font-size: 14px;
14
+ color: #666666;
15
+ letter-spacing: 0;
16
+ line-height: 30px;
17
+ font-weight: 400;
18
+ float: left;
19
+ }
20
+ }
21
+ }
4
22
  .asyncModal{
5
23
  .ant-modal-body{
6
24
  margin:-16px;
@@ -391,7 +409,7 @@
391
409
  box-shadow: 0 2px 2px 0 rgba(174,98,30,0.40);
392
410
  .point_top{
393
411
  content: ' ';
394
- width: 10px;
412
+ width: 0px;
395
413
  height: 5px;
396
414
  /* 绝对定位进行偏移 */
397
415
  position: absolute;
@@ -404,7 +422,7 @@
404
422
  }
405
423
  .point_bottom{
406
424
  content: ' ';
407
- width: 10px;
425
+ width: 0px;
408
426
  height: 5px;
409
427
  /* 绝对定位进行偏移 */
410
428
  position: absolute;
@@ -661,12 +679,26 @@
661
679
  padding-top:25px;
662
680
  padding-left:30px;
663
681
  padding-right: 20px;
664
- .settlement-pay-item-border {
665
- border-bottom: 1px solid #FF8C25 !important;
682
+ width: 300px;
683
+ position: relative;
684
+ .minus {
685
+ text-align: center;
686
+ display: inline-block;
687
+ height: 40px;
688
+ line-height: 40px;
689
+ width: 40px;
690
+ position: absolute;
691
+ left: 284px;
692
+ top: 34px;
693
+ .minusIcon {
694
+ font-size: 24px;
695
+ }
666
696
  }
667
697
  .main{
668
698
  display: flex;
669
- border-bottom: 1px solid #C8C8CD;
699
+ border-bottom-color: #C8C8CD;
700
+ border-bottom-width: 1px;
701
+ border-bottom-style: solid;
670
702
  .content{
671
703
  display: inline-block;
672
704
  vertical-align: top;
@@ -700,8 +732,8 @@
700
732
  }
701
733
  .lefticon{
702
734
  display: inline-block;
703
- width: 20px;
704
735
  margin-right: 16px;
736
+ position: absolute;
705
737
  i{
706
738
  font-size: 20px;
707
739
  }
@@ -715,6 +747,7 @@
715
747
  }
716
748
  }
717
749
  .name{
750
+ margin-left: 6px;
718
751
  width: 100px;
719
752
  display: inline-block;
720
753
  font-size: 16px;
@@ -730,9 +763,26 @@
730
763
  font-size: 12px;
731
764
  color: #75787B;
732
765
  line-height: 14px;
733
- padding-left: 36px;
766
+ padding-left: 10px;
734
767
  padding-top: 6px;
735
768
  padding-right: 60px;
769
+ .addCard {
770
+ width: 112px;
771
+ height: 32px;
772
+ border-radius: 4px;
773
+ text-align: center;
774
+ border: none;
775
+ font-size: 16px;
776
+ display: flex;
777
+ align-items: center;
778
+ border: none;
779
+ padding-top: 16px !important;
780
+ padding-left: 0px !important;
781
+ .plus {
782
+ font-size: 18px;
783
+ margin-right: 6px;
784
+ }
785
+ }
736
786
  }
737
787
  }
738
788
 
@@ -936,6 +986,23 @@
936
986
  padding-left: 74px;
937
987
  padding-top: 6px;
938
988
  padding-right: 60px;
989
+ .addCard {
990
+ width: 112px;
991
+ height: 32px;
992
+ border-radius: 4px;
993
+ text-align: center;
994
+ border: none;
995
+ font-size: 16px;
996
+ display: flex;
997
+ align-items: center;
998
+ border: none;
999
+ padding-top: 16px !important;
1000
+ padding-left: 0px !important;
1001
+ .plus {
1002
+ font-size: 18px;
1003
+ margin-right: 6px;
1004
+ }
1005
+ }
939
1006
  }
940
1007
 
941
1008
  }
@@ -1351,6 +1418,9 @@
1351
1418
  .ant-modal-body{
1352
1419
  padding:0 0 24px;
1353
1420
  }
1421
+ .ant-modal {
1422
+ top: none !important;
1423
+ }
1354
1424
  .no{
1355
1425
  padding-top: 30px;
1356
1426
  padding-left: 40px;