tplus-components-touch 3.19.1 → 3.21.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/cloudPrint/api.js +1 -1
- package/dist/components/cloudPrint/api.js.map +1 -1
- package/dist/components/cloudPrint/index.js +24 -48
- package/dist/components/cloudPrint/index.js.map +1 -1
- package/dist/components/inventorySearch/index.js +12 -3
- package/dist/components/inventorySearch/index.js.map +1 -1
- package/dist/components/inventorySearch/index.less +6 -2
- package/dist/components/keyboard/index.js +1 -1
- package/dist/components/keyboard/index.js.map +1 -1
- package/dist/components/settlement/asyncModal.js +4 -0
- package/dist/components/settlement/asyncModal.js.map +1 -1
- package/dist/components/settlement/prototypeTable/index.js +349 -0
- package/dist/components/settlement/prototypeTable/index.js.map +1 -0
- package/dist/components/settlement/prototypeTable/style.less +59 -0
- package/dist/components/settlement/prototypeTable/utils.js +14 -0
- package/dist/components/settlement/prototypeTable/utils.js.map +1 -0
- package/dist/components/settlement/settlement.js +505 -164
- package/dist/components/settlement/settlement.js.map +1 -1
- package/dist/components/settlement/settlement.less +110 -13
- package/dist/components/settlement/settlementStore.js +398 -87
- package/dist/components/settlement/settlementStore.js.map +1 -1
- package/dist/components/ticon/iconfont/demo.css +539 -539
- package/dist/components/ticon/iconfont/demo_index.html +417 -3
- package/dist/components/ticon/iconfont/iconfont.css +75 -3
- package/dist/components/ticon/iconfont/iconfont.js +12 -10
- package/dist/components/ticon/iconfont/iconfont.js.map +1 -1
- package/dist/components/ticon/iconfont/iconfont.json +126 -0
- package/dist/components/ticon/iconfont/iconfont.ttf +0 -0
- package/dist/components/ticon/iconfont/iconfont.woff +0 -0
- package/dist/components/ticon/iconfont/iconfont.woff2 +0 -0
- package/dist/index.js +2 -17
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/components/cloudPrint/printDispatch.js +0 -223
- package/dist/components/cloudPrint/printDispatch.js.map +0 -1
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
.scanInput {
|
|
33
33
|
// border-top:1px solid #E6E6EB;
|
|
34
|
-
padding-top:20px;
|
|
34
|
+
// padding-top:20px;
|
|
35
35
|
border-radius: 6px;
|
|
36
36
|
.icon{
|
|
37
37
|
text-align: center;
|
|
@@ -127,6 +127,21 @@
|
|
|
127
127
|
padding-left:0px;
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
|
+
.prototype {
|
|
131
|
+
padding-bottom: 10px;
|
|
132
|
+
.economize {
|
|
133
|
+
font-size: 18px;
|
|
134
|
+
}
|
|
135
|
+
.prototypeDetailed {
|
|
136
|
+
font-size: 18px;
|
|
137
|
+
position: relative;
|
|
138
|
+
.iconfont {
|
|
139
|
+
font-size: 10px;
|
|
140
|
+
position: absolute;
|
|
141
|
+
top: 6px;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
130
145
|
}
|
|
131
146
|
.buttonRegion2{
|
|
132
147
|
margin-top:14px !important;
|
|
@@ -322,6 +337,37 @@
|
|
|
322
337
|
font-size: 20px;
|
|
323
338
|
}
|
|
324
339
|
}
|
|
340
|
+
.col4 {
|
|
341
|
+
width: 496px;
|
|
342
|
+
margin-left: 16px;
|
|
343
|
+
border-bottom: 1px solid #E6E6EB;
|
|
344
|
+
.ant-btn {
|
|
345
|
+
margin-right: 2px;
|
|
346
|
+
padding: 0 10px;
|
|
347
|
+
font-size: 14px;
|
|
348
|
+
border: none;
|
|
349
|
+
border-bottom: 2px solid;
|
|
350
|
+
border-radius: 0;
|
|
351
|
+
margin-bottom: -1px;
|
|
352
|
+
position: relative;
|
|
353
|
+
}
|
|
354
|
+
.couponBorder {
|
|
355
|
+
border-color: #E6E6EB;
|
|
356
|
+
&::after{
|
|
357
|
+
position: absolute;
|
|
358
|
+
bottom: -1px;
|
|
359
|
+
left: 0px;
|
|
360
|
+
content: '';
|
|
361
|
+
width: 100%;
|
|
362
|
+
height: 1px;
|
|
363
|
+
border-bottom: 1px solid white;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
.couponTip {
|
|
367
|
+
color: #F83A41;
|
|
368
|
+
font-size: 12px;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
325
371
|
}
|
|
326
372
|
.djq2outer{
|
|
327
373
|
padding-top:8px;
|
|
@@ -414,7 +460,10 @@
|
|
|
414
460
|
left: -5px;
|
|
415
461
|
}
|
|
416
462
|
.djqLeftCash{
|
|
417
|
-
|
|
463
|
+
// background-image: linear-gradient(-137deg, #FD6E21 0%, #F9365D 100%);
|
|
464
|
+
}
|
|
465
|
+
.djqLeftCashGrey {
|
|
466
|
+
background-image: linear-gradient(137deg, #CBCAC9 0%, #B0B0B0 100%);
|
|
418
467
|
}
|
|
419
468
|
.djqLeftDiscount{
|
|
420
469
|
background-image: linear-gradient(-137deg, #FF8F36 0%, #FD6B59 100%);
|
|
@@ -427,15 +476,15 @@
|
|
|
427
476
|
background-color: #FFFFFF;
|
|
428
477
|
border-radius: 1px 4px 4px 1px;
|
|
429
478
|
text-align: left;
|
|
430
|
-
text-indent:
|
|
479
|
+
text-indent: 14px;
|
|
431
480
|
cursor: pointer;
|
|
432
481
|
.name{
|
|
433
482
|
// padding-left:23px;
|
|
434
483
|
padding-top:16px;
|
|
435
484
|
padding-bottom: 19px;
|
|
436
485
|
font-size: 17px;
|
|
437
|
-
color: #333333;
|
|
438
486
|
line-height: 16px;
|
|
487
|
+
width: 136px;
|
|
439
488
|
}
|
|
440
489
|
.info{
|
|
441
490
|
// padding-left:23px;
|
|
@@ -444,17 +493,35 @@
|
|
|
444
493
|
color: #333333;
|
|
445
494
|
line-height: 13px;
|
|
446
495
|
}
|
|
447
|
-
.
|
|
448
|
-
|
|
496
|
+
.noxuanzhong {
|
|
497
|
+
position: absolute;
|
|
498
|
+
top: 12px;
|
|
499
|
+
right: 12px;
|
|
500
|
+
border: 1px solid #979797;
|
|
501
|
+
border-radius: 0.83px;
|
|
502
|
+
width: 18px;
|
|
503
|
+
height: 18px;
|
|
504
|
+
}
|
|
505
|
+
.noxuanzhong1 {
|
|
506
|
+
position: absolute;
|
|
507
|
+
top: 6px;
|
|
508
|
+
right: 6px;
|
|
509
|
+
border: 1px solid #979797;
|
|
510
|
+
border-radius: 0.83px;
|
|
511
|
+
width: 18px;
|
|
512
|
+
height: 18px;
|
|
513
|
+
background: #F0F0F0;
|
|
449
514
|
}
|
|
450
|
-
|
|
451
515
|
}
|
|
452
516
|
|
|
453
517
|
.djqRightSelected{
|
|
454
|
-
background:#FFFFFF url('http://newretail-static-pro-bj.oss-cn-beijing-internal.aliyuncs.com/pos/img/shiyong.png') no-repeat !important;
|
|
455
|
-
background-position: right bottom !important;
|
|
456
|
-
.
|
|
457
|
-
|
|
518
|
+
// background:#FFFFFF url('http://newretail-static-pro-bj.oss-cn-beijing-internal.aliyuncs.com/pos/img/shiyong.png') no-repeat !important;
|
|
519
|
+
// background-position: right bottom !important;
|
|
520
|
+
.checkIcon {
|
|
521
|
+
font-size: 20px;
|
|
522
|
+
position: absolute;
|
|
523
|
+
top: 6px;
|
|
524
|
+
right: 6px;
|
|
458
525
|
}
|
|
459
526
|
}
|
|
460
527
|
}
|
|
@@ -503,6 +570,9 @@
|
|
|
503
570
|
.settlement-wraper2[role='dialog']{
|
|
504
571
|
z-index: 1006 !important;
|
|
505
572
|
}
|
|
573
|
+
.protoWraper[role='dialog'] {
|
|
574
|
+
z-index: 1006 !important;
|
|
575
|
+
}
|
|
506
576
|
.settlement-wraper2{
|
|
507
577
|
.ant-modal-body{
|
|
508
578
|
padding:0px !important;
|
|
@@ -516,7 +586,6 @@
|
|
|
516
586
|
}
|
|
517
587
|
.settlement{
|
|
518
588
|
width:100%;
|
|
519
|
-
|
|
520
589
|
.settlementTop {
|
|
521
590
|
display : flex;
|
|
522
591
|
align-items: center;
|
|
@@ -525,6 +594,10 @@
|
|
|
525
594
|
height: calc(~"100vh - 115px");
|
|
526
595
|
display: flex;
|
|
527
596
|
flex-flow: column;
|
|
597
|
+
.prototypeDetailed {
|
|
598
|
+
font-size: 18px;
|
|
599
|
+
margin-bottom: 0 !important;
|
|
600
|
+
}
|
|
528
601
|
}
|
|
529
602
|
.newstyle2{
|
|
530
603
|
.name {
|
|
@@ -546,6 +619,18 @@
|
|
|
546
619
|
// max-height: calc(~"100% - 200px");
|
|
547
620
|
// max-height: 200px;
|
|
548
621
|
overflow-y: auto;
|
|
622
|
+
.prototypeDetailed {
|
|
623
|
+
text-align: right;
|
|
624
|
+
font-size: 18px;
|
|
625
|
+
margin-bottom: 26px;
|
|
626
|
+
display: flex;
|
|
627
|
+
justify-content: flex-end;
|
|
628
|
+
align-items: center;
|
|
629
|
+
cursor: pointer;
|
|
630
|
+
.icon-shouqi1 {
|
|
631
|
+
font-size: 6px;
|
|
632
|
+
}
|
|
633
|
+
}
|
|
549
634
|
.detailempty{
|
|
550
635
|
padding-top:200px;
|
|
551
636
|
}
|
|
@@ -650,7 +735,7 @@
|
|
|
650
735
|
background: #EAF6FE;
|
|
651
736
|
border-radius: 6px;
|
|
652
737
|
padding: 16px 16px 0px 16px;
|
|
653
|
-
margin-bottom:
|
|
738
|
+
margin-bottom: 8px;
|
|
654
739
|
}
|
|
655
740
|
|
|
656
741
|
.keyboard {
|
|
@@ -1395,6 +1480,18 @@
|
|
|
1395
1480
|
border: 1px solid #C8C8CD;
|
|
1396
1481
|
border-radius: 2px;
|
|
1397
1482
|
}
|
|
1483
|
+
.economize {
|
|
1484
|
+
font-size: 18px;
|
|
1485
|
+
}
|
|
1486
|
+
.prototypeDetailed {
|
|
1487
|
+
font-size: 18px;
|
|
1488
|
+
position: relative;
|
|
1489
|
+
.iconfont {
|
|
1490
|
+
font-size: 10px;
|
|
1491
|
+
position: absolute;
|
|
1492
|
+
top: 6px;
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1398
1495
|
}
|
|
1399
1496
|
.error{
|
|
1400
1497
|
height:16px;
|