|
@@ -67,7 +67,7 @@
|
67
|
67
|
<div class="lable-title">面诊标签</div>
|
68
|
68
|
<div class="problem">
|
69
|
69
|
<div class="problem-title">问题标签</div>
|
70
|
|
- <div class="problem-lable">
|
|
70
|
+ <div class="problem-lable-top">
|
71
|
71
|
<div class="lable-text problem-text">{{problem}}</div>
|
72
|
72
|
</div>
|
73
|
73
|
</div>
|
|
@@ -85,22 +85,25 @@
|
85
|
85
|
<div class="right-top-list">
|
86
|
86
|
<div class="dataList"
|
87
|
87
|
@click="toOrder(1)">
|
88
|
|
- <img src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/icon/coupon/project_icon.png" />
|
89
|
|
- <p>项目订单</p>
|
90
|
|
- <span>{{order_total.project}}</span>
|
|
88
|
+ <div class="data-list-left"><img src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/icon/coupon/project_icon.png" />
|
|
89
|
+ <p>项目订单</p>
|
|
90
|
+ </div>
|
|
91
|
+ <div><span>{{order_total.project}}</span></div>
|
91
|
92
|
</div>
|
92
|
93
|
<div class="dataList"
|
93
|
94
|
style="margin:18px 0px"
|
94
|
95
|
@click="toOrder(2)">
|
95
|
|
- <img src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/icon/coupon/coupon_icon.png" />
|
96
|
|
- <p>优惠券</p>
|
97
|
|
- <span>{{order_total.coupon}}</span>
|
|
96
|
+ <div class="data-list-left"><img src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/icon/coupon/coupon_icon.png" />
|
|
97
|
+ <p>优惠券</p>
|
|
98
|
+ </div>
|
|
99
|
+ <div><span>{{order_total.coupon}}</span></div>
|
98
|
100
|
</div>
|
99
|
101
|
<div class="dataList"
|
100
|
102
|
@click="toOrder(3)">
|
101
|
|
- <img src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/icon/coupon/order_total_icon.png" />
|
102
|
|
- <p>商品订单</p>
|
103
|
|
- <span>{{order_total.goods}}</span>
|
|
103
|
+ <div class="data-list-left"><img src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/pad_clerk/icon/coupon/order_total_icon.png" />
|
|
104
|
+ <p>商品订单</p>
|
|
105
|
+ </div>
|
|
106
|
+ <div><span>{{order_total.goods}}</span></div>
|
104
|
107
|
</div>
|
105
|
108
|
</div>
|
106
|
109
|
</div>
|
|
@@ -375,15 +378,15 @@ export default {
|
375
|
378
|
}
|
376
|
379
|
|
377
|
380
|
.right {
|
|
381
|
+ width: calc(100% - 294px);
|
378
|
382
|
margin-left: 18px;
|
379
|
383
|
position: relative;
|
380
|
|
- flex: 1;
|
381
|
384
|
.right-top {
|
382
|
385
|
height: 205px;
|
383
|
386
|
// border: 1px solid red;
|
384
|
387
|
display: flex;
|
385
|
388
|
.right-top-list {
|
386
|
|
- width: 239ppx;
|
|
389
|
+ width: 239px;
|
387
|
390
|
margin-left: 18px;
|
388
|
391
|
display: flex;
|
389
|
392
|
flex-direction: column;
|
|
@@ -395,7 +398,12 @@ export default {
|
395
|
398
|
border-radius: 8px;
|
396
|
399
|
padding: 16px 12px 12px 12px;
|
397
|
400
|
display: flex;
|
|
401
|
+ justify-content: space-between;
|
398
|
402
|
align-items: center;
|
|
403
|
+ .data-list-left {
|
|
404
|
+ display: flex;
|
|
405
|
+ align-items: center;
|
|
406
|
+ }
|
399
|
407
|
img {
|
400
|
408
|
width: 33px;
|
401
|
409
|
height: 33px;
|
|
@@ -403,7 +411,6 @@ export default {
|
403
|
411
|
p {
|
404
|
412
|
font-size: 14px;
|
405
|
413
|
margin-left: 14px;
|
406
|
|
- margin-right: 80px;
|
407
|
414
|
}
|
408
|
415
|
span {
|
409
|
416
|
font-size: 16px;
|
|
@@ -416,7 +423,7 @@ export default {
|
416
|
423
|
box-shadow: 0px 2px 4px 0px rgba(184, 191, 198, 0.2);
|
417
|
424
|
border-radius: 8px;
|
418
|
425
|
padding: 16px 12px 12px 12px;
|
419
|
|
- width: 310px;
|
|
426
|
+ width: calc(100% - 239px);
|
420
|
427
|
height: 100%;
|
421
|
428
|
.lable {
|
422
|
429
|
// margin-top: 23px;
|
|
@@ -440,6 +447,30 @@ export default {
|
440
|
447
|
color: #333333;
|
441
|
448
|
line-height: 18px;
|
442
|
449
|
}
|
|
450
|
+ .problem-lable-top {
|
|
451
|
+ flex: 1;
|
|
452
|
+ overflow-y: hidden;
|
|
453
|
+ width: 100%;
|
|
454
|
+ height: 68px;
|
|
455
|
+ font-size: 12px;
|
|
456
|
+ font-family: PingFang-SC-Regular, PingFang-SC;
|
|
457
|
+ font-weight: 400;
|
|
458
|
+ color: #333333;
|
|
459
|
+ line-height: 17px;
|
|
460
|
+ display: flex;
|
|
461
|
+ flex-flow: column wrap;
|
|
462
|
+ list-style-type: none;
|
|
463
|
+ overflow-x: scroll;
|
|
464
|
+ align-items: baseline;
|
|
465
|
+
|
|
466
|
+ .lable-text {
|
|
467
|
+ margin-left: 10px;
|
|
468
|
+ margin-bottom: 10px;
|
|
469
|
+ border: 1px solid #42d351;
|
|
470
|
+ padding: 0 12px;
|
|
471
|
+ border-radius: 2px;
|
|
472
|
+ }
|
|
473
|
+ }
|
443
|
474
|
.problem-lable {
|
444
|
475
|
flex: 1;
|
445
|
476
|
overflow-y: hidden;
|
|
@@ -521,19 +552,22 @@ export default {
|
521
|
552
|
}
|
522
|
553
|
.right-bottom {
|
523
|
554
|
margin-top: 18px;
|
524
|
|
- width: 575px;
|
525
|
|
- height: 286px;
|
|
555
|
+ // width: 575px;
|
|
556
|
+ overflow: auto;
|
|
557
|
+ height: calc(100% - 223px);
|
526
|
558
|
background: #ffffff;
|
527
|
559
|
box-shadow: 0px 2px 4px 0px rgba(184, 191, 198, 0.2);
|
528
|
560
|
border-radius: 8px;
|
529
|
561
|
padding: 16px 12px 12px 12px;
|
530
|
562
|
.programme {
|
531
|
563
|
// margin-top: 20px;
|
|
564
|
+ height: 100%;
|
532
|
565
|
width: 100%;
|
533
|
566
|
background: #ffffff;
|
534
|
567
|
border-radius: 8px;
|
535
|
568
|
.programmeList {
|
536
|
|
- width: 550px;
|
|
569
|
+ height: calc(100% - 20px);
|
|
570
|
+ // width: 550px;
|
537
|
571
|
.programmeWeek {
|
538
|
572
|
display: flex;
|
539
|
573
|
align-items: center;
|
|
@@ -575,7 +609,7 @@ export default {
|
575
|
609
|
color: #333333;
|
576
|
610
|
}
|
577
|
611
|
.weekDetails {
|
578
|
|
- height: 180px;
|
|
612
|
+ height: calc(100% - 63px);
|
579
|
613
|
border-radius: 6px;
|
580
|
614
|
border: 1px solid #f5f5f5;
|
581
|
615
|
display: flex;
|
|
@@ -586,7 +620,7 @@ export default {
|
586
|
620
|
.contentItem {
|
587
|
621
|
margin-left: 10px;
|
588
|
622
|
width: 317px;
|
589
|
|
- min-height: 211px;
|
|
623
|
+ height: 100%;
|
590
|
624
|
border-right: 1px solid #f5f5f5;
|
591
|
625
|
// overflow-y: scroll;
|
592
|
626
|
}
|