cloud-business 0.1.130 → 0.1.131-1
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 +76 -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
|
@@ -4324,13 +4324,14 @@ body {
|
|
|
4324
4324
|
font-size: 14px;
|
|
4325
4325
|
color: rgba(0, 0, 0, 0.45);
|
|
4326
4326
|
width: 100%;
|
|
4327
|
+
margin-bottom: 16px;
|
|
4327
4328
|
}
|
|
4328
4329
|
.grid-area-new .customer-order-area-new .order-table-title .table-column1,
|
|
4329
4330
|
.grid-area-new .customer-order-area-new .order-table-title .table-column2,
|
|
4330
4331
|
.grid-area-new .customer-order-area-new .order-table-title .table-column5 {
|
|
4331
4332
|
height: 44px;
|
|
4332
4333
|
line-height: 20px;
|
|
4333
|
-
padding: 12px
|
|
4334
|
+
padding: 12px 0;
|
|
4334
4335
|
box-sizing: border-box;
|
|
4335
4336
|
background: #FAFAFA;
|
|
4336
4337
|
border-bottom: 1px solid #E8E8E8;
|
|
@@ -4342,18 +4343,28 @@ body {
|
|
|
4342
4343
|
.grid-area-new .customer-order-area-new .order-table-body {
|
|
4343
4344
|
width: 100%;
|
|
4344
4345
|
display: flex;
|
|
4346
|
+
gap: 16px;
|
|
4345
4347
|
flex-direction: column;
|
|
4346
|
-
height: calc(100% -
|
|
4348
|
+
height: calc(100% - 60px);
|
|
4347
4349
|
box-sizing: border-box;
|
|
4348
4350
|
overflow-y: auto;
|
|
4349
4351
|
overflow-x: hidden;
|
|
4350
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
|
+
}
|
|
4351
4362
|
.grid-area-new .customer-order-area-new .order-table-body .order-temp-tip-width {
|
|
4352
|
-
width:
|
|
4363
|
+
width: -moz-fit-content;
|
|
4364
|
+
width: fit-content;
|
|
4353
4365
|
}
|
|
4354
4366
|
.grid-area-new .customer-order-area-new .order-table-body .order-info {
|
|
4355
4367
|
width: 100%;
|
|
4356
|
-
margin-top: 13px;
|
|
4357
4368
|
}
|
|
4358
4369
|
.grid-area-new .customer-order-area-new .order-table-body .order-title {
|
|
4359
4370
|
width: 100%;
|
|
@@ -4365,6 +4376,29 @@ body {
|
|
|
4365
4376
|
border-top: 1px solid #E8E8E8;
|
|
4366
4377
|
border-left: 1px solid #E8E8E8;
|
|
4367
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;
|
|
4368
4402
|
}
|
|
4369
4403
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop,
|
|
4370
4404
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other,
|
|
@@ -4390,13 +4424,10 @@ body {
|
|
|
4390
4424
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop .customer-view-icon-svg {
|
|
4391
4425
|
margin-right: 4px;
|
|
4392
4426
|
}
|
|
4393
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other,
|
|
4394
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time {
|
|
4395
|
-
margin-left: 30px;
|
|
4396
|
-
}
|
|
4397
4427
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span:nth-child(1),
|
|
4398
4428
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time span:nth-child(1) {
|
|
4399
4429
|
color: rgba(0, 0, 0, 0.65);
|
|
4430
|
+
white-space: nowrap;
|
|
4400
4431
|
}
|
|
4401
4432
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id,
|
|
4402
4433
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time .copy-order-id {
|
|
@@ -4407,21 +4438,46 @@ body {
|
|
|
4407
4438
|
width: 180px;
|
|
4408
4439
|
}
|
|
4409
4440
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special {
|
|
4410
|
-
|
|
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;
|
|
4411
4465
|
}
|
|
4412
4466
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-0 {
|
|
4413
|
-
width: calc((100% - 180px - 180px - 330px - 120px) / 2);
|
|
4467
|
+
max-width: calc((100% - 180px - 180px - 330px - 120px) / 2);
|
|
4414
4468
|
}
|
|
4415
4469
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-1 {
|
|
4416
|
-
width: calc((100% - 180px - 180px - 180px - 330px - 150px) / 2);
|
|
4470
|
+
max-width: calc((100% - 180px - 180px - 180px - 330px - 150px - 20px * 5 + 200px) / 2);
|
|
4417
4471
|
}
|
|
4418
4472
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-2 {
|
|
4419
|
-
width: calc((100% - 180px - 180px - 330px - 150px) / 3);
|
|
4473
|
+
max-width: calc((100% - 180px - 180px - 330px - 150px - 20px * 5 + 200px) / 3);
|
|
4420
4474
|
}
|
|
4421
4475
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-2 {
|
|
4422
|
-
width: calc((100% - 180px - 180px - 180px - 330px - 180px) / 3);
|
|
4476
|
+
max-width: calc((100% - 180px - 180px - 180px - 330px - 180px - 20px * 5 + 300px) / 3);
|
|
4423
4477
|
}
|
|
4424
|
-
.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;
|
|
4425
4481
|
overflow: hidden;
|
|
4426
4482
|
white-space: nowrap;
|
|
4427
4483
|
text-overflow: ellipsis;
|
|
@@ -4432,12 +4488,6 @@ body {
|
|
|
4432
4488
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span {
|
|
4433
4489
|
display: inline-block;
|
|
4434
4490
|
}
|
|
4435
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id {
|
|
4436
|
-
width: calc(100% - 60px);
|
|
4437
|
-
}
|
|
4438
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .order-other-status {
|
|
4439
|
-
width: calc(100% - 70px);
|
|
4440
|
-
}
|
|
4441
4491
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id,
|
|
4442
4492
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .order-other-status {
|
|
4443
4493
|
display: inline-block;
|
|
@@ -4544,7 +4594,7 @@ body {
|
|
|
4544
4594
|
display: -webkit-box;
|
|
4545
4595
|
-webkit-box-orient: vertical;
|
|
4546
4596
|
-moz-box-orient: vertical;
|
|
4547
|
-
-webkit-line-clamp:
|
|
4597
|
+
-webkit-line-clamp: 3;
|
|
4548
4598
|
overflow: hidden;
|
|
4549
4599
|
}
|
|
4550
4600
|
.grid-area-new .customer-order-area-new .order-table-body .order-content .product-name a:hover {
|
|
@@ -4603,17 +4653,14 @@ body {
|
|
|
4603
4653
|
.grid-area-new .customer-order-area-new .order-table-body .order-content .order-content-4 p:nth-child(1) {
|
|
4604
4654
|
color: #FD830A;
|
|
4605
4655
|
}
|
|
4606
|
-
.grid-area-new .customer-order-area-new .order-extend-1 {
|
|
4607
|
-
width: calc(100% + 14.5%) !important;
|
|
4608
|
-
}
|
|
4609
4656
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column1 {
|
|
4610
|
-
width:
|
|
4657
|
+
width: 27.5% !important;
|
|
4611
4658
|
}
|
|
4612
4659
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column2 {
|
|
4613
|
-
width: 12.
|
|
4660
|
+
width: 12.7% !important;
|
|
4614
4661
|
}
|
|
4615
4662
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column5 {
|
|
4616
|
-
width: 21.
|
|
4663
|
+
width: 21.7% !important;
|
|
4617
4664
|
}
|
|
4618
4665
|
.grid-area-new .customer-order-area-new .order-extend-1 .order-content-1-1 {
|
|
4619
4666
|
width: calc(100% - 21.6% - 12.6%) !important;
|
|
@@ -4627,9 +4674,6 @@ body {
|
|
|
4627
4674
|
.grid-area-new .customer-order-area-new .order-extend-1 .order-content-4 {
|
|
4628
4675
|
width: 21.6% !important;
|
|
4629
4676
|
}
|
|
4630
|
-
.grid-area-new .customer-order-area-new .order-extend-2 {
|
|
4631
|
-
width: calc(100% + 14.5% + 14.5%) !important;
|
|
4632
|
-
}
|
|
4633
4677
|
.grid-area-new .customer-order-area-new .order-extend-2 .table-column1 {
|
|
4634
4678
|
width: 24.9% !important;
|
|
4635
4679
|
}
|
|
@@ -4651,14 +4695,11 @@ body {
|
|
|
4651
4695
|
.grid-area-new .customer-order-area-new .order-extend-2 .order-content-4 {
|
|
4652
4696
|
width: 19.1% !important;
|
|
4653
4697
|
}
|
|
4654
|
-
.grid-area-new .customer-order-area-new .order-extend-3 {
|
|
4655
|
-
width: calc(100% + 14.5% + 14.5% + 14.5%) !important;
|
|
4656
|
-
}
|
|
4657
4698
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column1 {
|
|
4658
|
-
width:
|
|
4699
|
+
width: 21.6% !important;
|
|
4659
4700
|
}
|
|
4660
4701
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column2 {
|
|
4661
|
-
width: 10.
|
|
4702
|
+
width: 10.2% !important;
|
|
4662
4703
|
}
|
|
4663
4704
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column5 {
|
|
4664
4705
|
width: 17.2% !important;
|