cloud-business 0.1.129 → 0.1.130-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/cloud-business.css +126 -35
- package/cloud-business.js +1 -1
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +1 -1
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -3895,6 +3895,49 @@ body {
|
|
|
3895
3895
|
align-items: center;
|
|
3896
3896
|
border-radius: 2px;
|
|
3897
3897
|
}
|
|
3898
|
+
.customer-view-rfm-detail-title {
|
|
3899
|
+
position: relative;
|
|
3900
|
+
font-size: 14px;
|
|
3901
|
+
line-height: 20px;
|
|
3902
|
+
font-weight: 500;
|
|
3903
|
+
color: rgba(0, 0, 0, 0.85);
|
|
3904
|
+
margin-bottom: 16px;
|
|
3905
|
+
padding-left: 8px;
|
|
3906
|
+
}
|
|
3907
|
+
.customer-view-rfm-detail-title:before {
|
|
3908
|
+
position: absolute;
|
|
3909
|
+
top: 4px;
|
|
3910
|
+
left: 0;
|
|
3911
|
+
display: block;
|
|
3912
|
+
content: "";
|
|
3913
|
+
width: 2px;
|
|
3914
|
+
height: 12px;
|
|
3915
|
+
background: var(--shuyunBlue4);
|
|
3916
|
+
}
|
|
3917
|
+
.customer-view-rfm-detail-card {
|
|
3918
|
+
display: flex;
|
|
3919
|
+
align-items: center;
|
|
3920
|
+
justify-content: space-around;
|
|
3921
|
+
height: 96px;
|
|
3922
|
+
background: #fafafa;
|
|
3923
|
+
width: 100%;
|
|
3924
|
+
}
|
|
3925
|
+
.customer-view-rfm-detail-card-item {
|
|
3926
|
+
display: flex;
|
|
3927
|
+
flex-direction: column;
|
|
3928
|
+
gap: 8px;
|
|
3929
|
+
text-align: left;
|
|
3930
|
+
}
|
|
3931
|
+
.customer-view-rfm-detail-card-title {
|
|
3932
|
+
color: rgba(0, 0, 0, 0.65);
|
|
3933
|
+
}
|
|
3934
|
+
.customer-view-rfm-detail-card-value {
|
|
3935
|
+
font-size: 24px;
|
|
3936
|
+
font-family: DINAlternate-Bold, DINAlternate;
|
|
3937
|
+
font-weight: 700;
|
|
3938
|
+
line-height: 32px;
|
|
3939
|
+
color: rgba(0, 0, 0, 0.85);
|
|
3940
|
+
}
|
|
3898
3941
|
|
|
3899
3942
|
/**
|
|
3900
3943
|
* style.less
|
|
@@ -4281,13 +4324,14 @@ body {
|
|
|
4281
4324
|
font-size: 14px;
|
|
4282
4325
|
color: rgba(0, 0, 0, 0.45);
|
|
4283
4326
|
width: 100%;
|
|
4327
|
+
margin-bottom: 16px;
|
|
4284
4328
|
}
|
|
4285
4329
|
.grid-area-new .customer-order-area-new .order-table-title .table-column1,
|
|
4286
4330
|
.grid-area-new .customer-order-area-new .order-table-title .table-column2,
|
|
4287
4331
|
.grid-area-new .customer-order-area-new .order-table-title .table-column5 {
|
|
4288
4332
|
height: 44px;
|
|
4289
4333
|
line-height: 20px;
|
|
4290
|
-
padding: 12px
|
|
4334
|
+
padding: 12px 0;
|
|
4291
4335
|
box-sizing: border-box;
|
|
4292
4336
|
background: #FAFAFA;
|
|
4293
4337
|
border-bottom: 1px solid #E8E8E8;
|
|
@@ -4299,18 +4343,28 @@ body {
|
|
|
4299
4343
|
.grid-area-new .customer-order-area-new .order-table-body {
|
|
4300
4344
|
width: 100%;
|
|
4301
4345
|
display: flex;
|
|
4346
|
+
gap: 16px;
|
|
4302
4347
|
flex-direction: column;
|
|
4303
|
-
height: calc(100% -
|
|
4348
|
+
height: calc(100% - 60px);
|
|
4304
4349
|
box-sizing: border-box;
|
|
4305
4350
|
overflow-y: auto;
|
|
4306
4351
|
overflow-x: hidden;
|
|
4307
4352
|
}
|
|
4353
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-total-amount {
|
|
4354
|
+
height: 39px;
|
|
4355
|
+
line-height: 39px;
|
|
4356
|
+
background: #FAFAFA;
|
|
4357
|
+
border-left: 1px solid #E8E8E8;
|
|
4358
|
+
border-right: 1px solid #E8E8E8;
|
|
4359
|
+
border-bottom: 1px solid #E8E8E8;
|
|
4360
|
+
padding-left: 12px;
|
|
4361
|
+
}
|
|
4308
4362
|
.grid-area-new .customer-order-area-new .order-table-body .order-temp-tip-width {
|
|
4309
|
-
width:
|
|
4363
|
+
width: -moz-fit-content;
|
|
4364
|
+
width: fit-content;
|
|
4310
4365
|
}
|
|
4311
4366
|
.grid-area-new .customer-order-area-new .order-table-body .order-info {
|
|
4312
4367
|
width: 100%;
|
|
4313
|
-
margin-top: 13px;
|
|
4314
4368
|
}
|
|
4315
4369
|
.grid-area-new .customer-order-area-new .order-table-body .order-title {
|
|
4316
4370
|
width: 100%;
|
|
@@ -4322,6 +4376,29 @@ body {
|
|
|
4322
4376
|
border-top: 1px solid #E8E8E8;
|
|
4323
4377
|
border-left: 1px solid #E8E8E8;
|
|
4324
4378
|
border-right: 1px solid #E8E8E8;
|
|
4379
|
+
border-bottom: 1px solid #E8E8E8;
|
|
4380
|
+
gap: 20px;
|
|
4381
|
+
}
|
|
4382
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-no-shop {
|
|
4383
|
+
background: white;
|
|
4384
|
+
border-top: none;
|
|
4385
|
+
}
|
|
4386
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-no-shop.order-title-has-children {
|
|
4387
|
+
background: #FAFAFA;
|
|
4388
|
+
}
|
|
4389
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-no-shop.order-title-has-children .order-special::after {
|
|
4390
|
+
top: 30px;
|
|
4391
|
+
}
|
|
4392
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-has-children {
|
|
4393
|
+
background: #FAFAFA;
|
|
4394
|
+
}
|
|
4395
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-has-children .order-special::before,
|
|
4396
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-has-children .order-special::after {
|
|
4397
|
+
display: block;
|
|
4398
|
+
}
|
|
4399
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.hide-angle .order-special::before,
|
|
4400
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.hide-angle .order-special::after {
|
|
4401
|
+
display: none;
|
|
4325
4402
|
}
|
|
4326
4403
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop,
|
|
4327
4404
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other,
|
|
@@ -4347,13 +4424,10 @@ body {
|
|
|
4347
4424
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop .customer-view-icon-svg {
|
|
4348
4425
|
margin-right: 4px;
|
|
4349
4426
|
}
|
|
4350
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other,
|
|
4351
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time {
|
|
4352
|
-
margin-left: 30px;
|
|
4353
|
-
}
|
|
4354
4427
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span:nth-child(1),
|
|
4355
4428
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time span:nth-child(1) {
|
|
4356
4429
|
color: rgba(0, 0, 0, 0.65);
|
|
4430
|
+
white-space: nowrap;
|
|
4357
4431
|
}
|
|
4358
4432
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id,
|
|
4359
4433
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time .copy-order-id {
|
|
@@ -4364,21 +4438,46 @@ body {
|
|
|
4364
4438
|
width: 180px;
|
|
4365
4439
|
}
|
|
4366
4440
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special {
|
|
4367
|
-
|
|
4441
|
+
position: relative;
|
|
4442
|
+
max-width: 330px !important;
|
|
4443
|
+
}
|
|
4444
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special::before {
|
|
4445
|
+
display: none;
|
|
4446
|
+
content: '';
|
|
4447
|
+
position: absolute;
|
|
4448
|
+
width: 10px;
|
|
4449
|
+
height: 10px;
|
|
4450
|
+
background: #FAFAFA;
|
|
4451
|
+
left: 50px;
|
|
4452
|
+
transform: rotate(45deg);
|
|
4453
|
+
top: 23px;
|
|
4454
|
+
border: 1px solid #E8E8E8;
|
|
4455
|
+
}
|
|
4456
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special:after {
|
|
4457
|
+
display: none;
|
|
4458
|
+
content: '';
|
|
4459
|
+
position: absolute;
|
|
4460
|
+
width: 20px;
|
|
4461
|
+
height: 10px;
|
|
4462
|
+
background: #FAFAFA;
|
|
4463
|
+
top: 29px;
|
|
4464
|
+
left: 45px;
|
|
4368
4465
|
}
|
|
4369
4466
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-0 {
|
|
4370
|
-
width: calc((100% - 180px - 180px - 330px - 120px) / 2);
|
|
4467
|
+
max-width: calc((100% - 180px - 180px - 330px - 120px) / 2);
|
|
4371
4468
|
}
|
|
4372
4469
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-1 {
|
|
4373
|
-
width: calc((100% - 180px - 180px - 180px - 330px - 150px) / 2);
|
|
4470
|
+
max-width: calc((100% - 180px - 180px - 180px - 330px - 150px - 20px * 5 + 200px) / 2);
|
|
4374
4471
|
}
|
|
4375
4472
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-2 {
|
|
4376
|
-
width: calc((100% - 180px - 180px - 330px - 150px) / 3);
|
|
4473
|
+
max-width: calc((100% - 180px - 180px - 330px - 150px - 20px * 5 + 200px) / 3);
|
|
4377
4474
|
}
|
|
4378
4475
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-2 {
|
|
4379
|
-
width: calc((100% - 180px - 180px - 180px - 330px - 180px) / 3);
|
|
4476
|
+
max-width: calc((100% - 180px - 180px - 180px - 330px - 180px - 20px * 5 + 300px) / 3);
|
|
4380
4477
|
}
|
|
4381
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop {
|
|
4478
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop .order-shop-name {
|
|
4479
|
+
width: calc(100% - 20px);
|
|
4480
|
+
display: block;
|
|
4382
4481
|
overflow: hidden;
|
|
4383
4482
|
white-space: nowrap;
|
|
4384
4483
|
text-overflow: ellipsis;
|
|
@@ -4389,12 +4488,6 @@ body {
|
|
|
4389
4488
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span {
|
|
4390
4489
|
display: inline-block;
|
|
4391
4490
|
}
|
|
4392
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id {
|
|
4393
|
-
width: calc(100% - 60px);
|
|
4394
|
-
}
|
|
4395
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .order-other-status {
|
|
4396
|
-
width: calc(100% - 70px);
|
|
4397
|
-
}
|
|
4398
4491
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id,
|
|
4399
4492
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .order-other-status {
|
|
4400
4493
|
display: inline-block;
|
|
@@ -4501,7 +4594,7 @@ body {
|
|
|
4501
4594
|
display: -webkit-box;
|
|
4502
4595
|
-webkit-box-orient: vertical;
|
|
4503
4596
|
-moz-box-orient: vertical;
|
|
4504
|
-
-webkit-line-clamp:
|
|
4597
|
+
-webkit-line-clamp: 3;
|
|
4505
4598
|
overflow: hidden;
|
|
4506
4599
|
}
|
|
4507
4600
|
.grid-area-new .customer-order-area-new .order-table-body .order-content .product-name a:hover {
|
|
@@ -4560,17 +4653,14 @@ body {
|
|
|
4560
4653
|
.grid-area-new .customer-order-area-new .order-table-body .order-content .order-content-4 p:nth-child(1) {
|
|
4561
4654
|
color: #FD830A;
|
|
4562
4655
|
}
|
|
4563
|
-
.grid-area-new .customer-order-area-new .order-extend-1 {
|
|
4564
|
-
width: calc(100% + 14.5%) !important;
|
|
4565
|
-
}
|
|
4566
4656
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column1 {
|
|
4567
|
-
width:
|
|
4657
|
+
width: 27.5% !important;
|
|
4568
4658
|
}
|
|
4569
4659
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column2 {
|
|
4570
|
-
width: 12.
|
|
4660
|
+
width: 12.7% !important;
|
|
4571
4661
|
}
|
|
4572
4662
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column5 {
|
|
4573
|
-
width: 21.
|
|
4663
|
+
width: 21.7% !important;
|
|
4574
4664
|
}
|
|
4575
4665
|
.grid-area-new .customer-order-area-new .order-extend-1 .order-content-1-1 {
|
|
4576
4666
|
width: calc(100% - 21.6% - 12.6%) !important;
|
|
@@ -4584,9 +4674,6 @@ body {
|
|
|
4584
4674
|
.grid-area-new .customer-order-area-new .order-extend-1 .order-content-4 {
|
|
4585
4675
|
width: 21.6% !important;
|
|
4586
4676
|
}
|
|
4587
|
-
.grid-area-new .customer-order-area-new .order-extend-2 {
|
|
4588
|
-
width: calc(100% + 14.5% + 14.5%) !important;
|
|
4589
|
-
}
|
|
4590
4677
|
.grid-area-new .customer-order-area-new .order-extend-2 .table-column1 {
|
|
4591
4678
|
width: 24.9% !important;
|
|
4592
4679
|
}
|
|
@@ -4608,14 +4695,11 @@ body {
|
|
|
4608
4695
|
.grid-area-new .customer-order-area-new .order-extend-2 .order-content-4 {
|
|
4609
4696
|
width: 19.1% !important;
|
|
4610
4697
|
}
|
|
4611
|
-
.grid-area-new .customer-order-area-new .order-extend-3 {
|
|
4612
|
-
width: calc(100% + 14.5% + 14.5% + 14.5%) !important;
|
|
4613
|
-
}
|
|
4614
4698
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column1 {
|
|
4615
|
-
width:
|
|
4699
|
+
width: 21.6% !important;
|
|
4616
4700
|
}
|
|
4617
4701
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column2 {
|
|
4618
|
-
width: 10.
|
|
4702
|
+
width: 10.2% !important;
|
|
4619
4703
|
}
|
|
4620
4704
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column5 {
|
|
4621
4705
|
width: 17.2% !important;
|
|
@@ -4748,6 +4832,9 @@ body {
|
|
|
4748
4832
|
.customer-loading {
|
|
4749
4833
|
height: calc(100% - 102px);
|
|
4750
4834
|
}
|
|
4835
|
+
.dynamic-content-info-trades-time-popover {
|
|
4836
|
+
max-width: 400px;
|
|
4837
|
+
}
|
|
4751
4838
|
|
|
4752
4839
|
/**
|
|
4753
4840
|
* index.less
|
|
@@ -6140,6 +6227,10 @@ body {
|
|
|
6140
6227
|
.add-tag-modal .tag-type-area .select-tag-value .cloud-radio-group {
|
|
6141
6228
|
display: inline-block;
|
|
6142
6229
|
}
|
|
6230
|
+
.customer-label-choose-tag-popover {
|
|
6231
|
+
width: 300px!important;
|
|
6232
|
+
max-width: 300px!important;
|
|
6233
|
+
}
|
|
6143
6234
|
|
|
6144
6235
|
.customer-view-icon-svg {
|
|
6145
6236
|
font-size: 16px;
|