tplus-components-touch 3.37.1 → 3.38.2
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/dist/components/hotKey/localConfig.js +14 -16
- package/dist/components/hotKey/localConfig.js.map +1 -1
- package/dist/components/modalWraper/index.js +1 -1
- package/dist/components/modalWraper/index.js.map +1 -1
- package/dist/components/settlement/index.js +9 -0
- package/dist/components/settlement/index.js.map +1 -1
- package/dist/components/settlement/settlement.js +28 -33
- package/dist/components/settlement/settlement.js.map +1 -1
- package/dist/components/settlement/settlement.less +28 -6
- package/dist/components/settlement/settlementStore.js +739 -382
- package/dist/components/settlement/settlementStore.js.map +1 -1
- package/dist/components/ticon/iconfont/demo.css +539 -539
- package/package.json +35 -35
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
.pwdModal {
|
|
35
35
|
height: calc(~"100vh - 224px") !important;
|
|
36
36
|
}
|
|
37
|
-
.settlement-wraper div::-webkit-scrollbar{
|
|
37
|
+
.settlement-wraper div:not(.bottom)::-webkit-scrollbar{
|
|
38
38
|
display: none
|
|
39
39
|
}
|
|
40
40
|
|
|
@@ -444,7 +444,7 @@
|
|
|
444
444
|
overflow: hidden;
|
|
445
445
|
text-align: center;
|
|
446
446
|
.amount{
|
|
447
|
-
padding-top:
|
|
447
|
+
padding-top:20px;
|
|
448
448
|
span:first-child{
|
|
449
449
|
font-size: 20px;
|
|
450
450
|
color: #FFFFFF;
|
|
@@ -1474,7 +1474,7 @@
|
|
|
1474
1474
|
border-top: 1px solid #F4F4F4;
|
|
1475
1475
|
border-bottom: 4px solid #F4F4F4;
|
|
1476
1476
|
text-align: center;
|
|
1477
|
-
|
|
1477
|
+
margin-left: 1px;
|
|
1478
1478
|
.name{
|
|
1479
1479
|
font-size: 12px;
|
|
1480
1480
|
color: #666666;
|
|
@@ -1503,6 +1503,7 @@
|
|
|
1503
1503
|
}
|
|
1504
1504
|
.gap{
|
|
1505
1505
|
display: inline-block;
|
|
1506
|
+
padding-left:10px;
|
|
1506
1507
|
.gap1{
|
|
1507
1508
|
height:20px;
|
|
1508
1509
|
}
|
|
@@ -1576,9 +1577,9 @@
|
|
|
1576
1577
|
}
|
|
1577
1578
|
.error{
|
|
1578
1579
|
height:16px;
|
|
1579
|
-
padding-left:
|
|
1580
|
+
padding-left: 140px;
|
|
1580
1581
|
padding-top: 4px;
|
|
1581
|
-
font-size:
|
|
1582
|
+
font-size: 14px;
|
|
1582
1583
|
color: #E60012;
|
|
1583
1584
|
letter-spacing: 0;
|
|
1584
1585
|
line-height: 12px;
|
|
@@ -1661,4 +1662,25 @@
|
|
|
1661
1662
|
}
|
|
1662
1663
|
}
|
|
1663
1664
|
}
|
|
1664
|
-
}
|
|
1665
|
+
}
|
|
1666
|
+
.repeat-modal {
|
|
1667
|
+
&.method-modal1 {
|
|
1668
|
+
.content1 {
|
|
1669
|
+
position: inherit;
|
|
1670
|
+
z-index: 1007;
|
|
1671
|
+
transform: translate(0,0);
|
|
1672
|
+
text-overflow: inherit;
|
|
1673
|
+
-webkit-line-clamp: inherit;
|
|
1674
|
+
-webkit-box-orient: inherit;
|
|
1675
|
+
line-height: 23px;
|
|
1676
|
+
.content-box {
|
|
1677
|
+
word-break: normal;
|
|
1678
|
+
word-wrap: break-word;
|
|
1679
|
+
text-align: justify;
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1682
|
+
.ant-modal-confirm-body {
|
|
1683
|
+
height: auto;
|
|
1684
|
+
}
|
|
1685
|
+
}
|
|
1686
|
+
}
|