cloud-business 0.1.91-9 → 0.1.92
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 +142 -59
- package/cloud-business.js +2 -2
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +1 -1
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -5597,6 +5597,7 @@ input::-webkit-search-cancel-button {
|
|
|
5597
5597
|
.newCloud-table-body {
|
|
5598
5598
|
flex: 1;
|
|
5599
5599
|
overflow: auto auto !important;
|
|
5600
|
+
z-index: 1;
|
|
5600
5601
|
}
|
|
5601
5602
|
.newCloud-table-tbody tr.newCloud-table-row-select td,
|
|
5602
5603
|
.newCloud-table-body tr.newCloud-table-row-select td {
|
|
@@ -5803,15 +5804,15 @@ input::-webkit-search-cancel-button {
|
|
|
5803
5804
|
.newCloud-table .title-container .filter-icon.has-filter-value {
|
|
5804
5805
|
color: var(--shuyunBlue4);
|
|
5805
5806
|
}
|
|
5806
|
-
.newCloud-table .title-
|
|
5807
|
+
.newCloud-table .title-with-tip {
|
|
5807
5808
|
display: inline-flex;
|
|
5808
5809
|
align-items: center;
|
|
5809
5810
|
}
|
|
5810
|
-
.newCloud-table .title-
|
|
5811
|
+
.newCloud-table .title-with-tip .title-tip-icon {
|
|
5811
5812
|
margin: 0 4px;
|
|
5812
5813
|
color: rgba(0, 0, 0, 0.25);
|
|
5813
5814
|
}
|
|
5814
|
-
.newCloud-table .title-
|
|
5815
|
+
.newCloud-table .title-with-tip.title-with-tip-left {
|
|
5815
5816
|
flex-direction: row-reverse;
|
|
5816
5817
|
}
|
|
5817
5818
|
.newCloud-table-sticky-holder {
|
|
@@ -6285,6 +6286,64 @@ input::-webkit-search-cancel-button {
|
|
|
6285
6286
|
}
|
|
6286
6287
|
}
|
|
6287
6288
|
|
|
6289
|
+
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
6290
|
+
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
6291
|
+
.newCloud-table-column-tpl-text {
|
|
6292
|
+
width: 100%;
|
|
6293
|
+
white-space: nowrap;
|
|
6294
|
+
overflow: hidden;
|
|
6295
|
+
text-overflow: ellipsis;
|
|
6296
|
+
}
|
|
6297
|
+
.newCloud-table-column-tpl-multi-text {
|
|
6298
|
+
width: 100%;
|
|
6299
|
+
overflow: hidden;
|
|
6300
|
+
text-overflow: ellipsis;
|
|
6301
|
+
display: -webkit-box;
|
|
6302
|
+
-webkit-line-clamp: 2;
|
|
6303
|
+
-webkit-box-orient: vertical;
|
|
6304
|
+
}
|
|
6305
|
+
.newCloud-table-column-tpl-link {
|
|
6306
|
+
width: 100%;
|
|
6307
|
+
cursor: pointer;
|
|
6308
|
+
color: var(--shuyunBlue4);
|
|
6309
|
+
white-space: nowrap;
|
|
6310
|
+
overflow: hidden;
|
|
6311
|
+
text-overflow: ellipsis;
|
|
6312
|
+
}
|
|
6313
|
+
.newCloud-table-column-tpl-multi-link {
|
|
6314
|
+
width: 100%;
|
|
6315
|
+
cursor: pointer;
|
|
6316
|
+
color: var(--shuyunBlue4);
|
|
6317
|
+
overflow: hidden;
|
|
6318
|
+
text-overflow: ellipsis;
|
|
6319
|
+
display: -webkit-box;
|
|
6320
|
+
-webkit-line-clamp: 2;
|
|
6321
|
+
-webkit-box-orient: vertical;
|
|
6322
|
+
}
|
|
6323
|
+
.newCloud-table-column-tpl-tag {
|
|
6324
|
+
display: flex;
|
|
6325
|
+
flex-wrap: wrap;
|
|
6326
|
+
gap: 8px;
|
|
6327
|
+
}
|
|
6328
|
+
.newCloud-table-column-tpl-tag-item {
|
|
6329
|
+
min-width: -moz-fit-content;
|
|
6330
|
+
min-width: fit-content;
|
|
6331
|
+
max-width: 100%;
|
|
6332
|
+
padding: 1px 4px;
|
|
6333
|
+
line-height: 18px;
|
|
6334
|
+
font-size: 12px;
|
|
6335
|
+
color: rgba(0, 0, 0, 0.65);
|
|
6336
|
+
background-color: #f5f5f5;
|
|
6337
|
+
border-color: #f5f5f5;
|
|
6338
|
+
cursor: default;
|
|
6339
|
+
white-space: nowrap;
|
|
6340
|
+
overflow: hidden;
|
|
6341
|
+
text-overflow: ellipsis;
|
|
6342
|
+
}
|
|
6343
|
+
.newCloud-table-column-tpl-tag-item.more {
|
|
6344
|
+
cursor: pointer;
|
|
6345
|
+
}
|
|
6346
|
+
|
|
6288
6347
|
/* 不要在此引入normalize.less及其他放置公用无需编译的css */
|
|
6289
6348
|
/* 不要在此引入animation.less及其他放置公用无需编译的css */
|
|
6290
6349
|
.newCloud-card {
|
|
@@ -6980,10 +7039,11 @@ input::-webkit-search-cancel-button {
|
|
|
6980
7039
|
position: fixed;
|
|
6981
7040
|
background: white;
|
|
6982
7041
|
transition: top 500ms, right 500ms, bottom 500ms, left 500ms;
|
|
6983
|
-
z-index:
|
|
7042
|
+
z-index: -1;
|
|
6984
7043
|
}
|
|
6985
7044
|
.newCloud-drawer1.show {
|
|
6986
7045
|
box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
|
|
7046
|
+
z-index: 1010;
|
|
6987
7047
|
}
|
|
6988
7048
|
.newCloud-drawer1.top {
|
|
6989
7049
|
top: 0;
|
|
@@ -14274,6 +14334,7 @@ body {
|
|
|
14274
14334
|
cursor: pointer;
|
|
14275
14335
|
}
|
|
14276
14336
|
.account-area-new .customer-account-info-new .uniId-wrap .uniId-state {
|
|
14337
|
+
cursor: pointer;
|
|
14277
14338
|
margin-left: 8px;
|
|
14278
14339
|
border-radius: 13px;
|
|
14279
14340
|
padding: 0 8px;
|
|
@@ -14342,6 +14403,10 @@ body {
|
|
|
14342
14403
|
margin-left: 4px;
|
|
14343
14404
|
font-size: 14px;
|
|
14344
14405
|
}
|
|
14406
|
+
.account-area-new .customer-account-info-new .customer-info-wrap .customer-info-text .newCloud-icon-question-circle {
|
|
14407
|
+
cursor: pointer;
|
|
14408
|
+
color: rgba(0, 0, 0, 0.65);
|
|
14409
|
+
}
|
|
14345
14410
|
.account-area-new .customer-account-info-new .customer-info-wrap .customer-info-text:hover .newCloud-icon-view,
|
|
14346
14411
|
.account-area-new .customer-account-info-new .customer-info-wrap .customer-info-text:hover .newCloud-icon-hide {
|
|
14347
14412
|
display: inline-block;
|
|
@@ -14350,7 +14415,7 @@ body {
|
|
|
14350
14415
|
width: calc(100% - 90px);
|
|
14351
14416
|
}
|
|
14352
14417
|
.account-area-new .customer-account-info-new .customer-info-wrap .customer-info-text-address {
|
|
14353
|
-
max-width: calc(100% -
|
|
14418
|
+
max-width: calc(100% - 40px);
|
|
14354
14419
|
overflow: hidden;
|
|
14355
14420
|
text-decoration: none;
|
|
14356
14421
|
white-space: nowrap;
|
|
@@ -14401,6 +14466,56 @@ body {
|
|
|
14401
14466
|
margin-bottom: 8px;
|
|
14402
14467
|
}
|
|
14403
14468
|
|
|
14469
|
+
body {
|
|
14470
|
+
margin: 0;
|
|
14471
|
+
--shuyunBlue1: #EDF6FF;
|
|
14472
|
+
--shuyunBlue2: #CCE6FF;
|
|
14473
|
+
--shuyunBlue3: #72B0ED;
|
|
14474
|
+
--shuyunBlue4: #0066CC;
|
|
14475
|
+
--shuyunBlue5: #004CA3;
|
|
14476
|
+
--shuyunBlue6: #003775;
|
|
14477
|
+
--shuyunBlue7: #002147;
|
|
14478
|
+
}
|
|
14479
|
+
.over-length-tip-common {
|
|
14480
|
+
width: 100%;
|
|
14481
|
+
cursor: pointer;
|
|
14482
|
+
overflow: hidden;
|
|
14483
|
+
white-space: nowrap;
|
|
14484
|
+
text-overflow: ellipsis;
|
|
14485
|
+
}
|
|
14486
|
+
.over-length-tip-href {
|
|
14487
|
+
display: block;
|
|
14488
|
+
width: 100%;
|
|
14489
|
+
overflow: hidden;
|
|
14490
|
+
white-space: nowrap;
|
|
14491
|
+
text-overflow: ellipsis;
|
|
14492
|
+
color: var(--shuyunBlue4) !important;
|
|
14493
|
+
cursor: pointer;
|
|
14494
|
+
}
|
|
14495
|
+
.over-length-tip-href:hover {
|
|
14496
|
+
color: var(--shuyunBlue4) !important;
|
|
14497
|
+
}
|
|
14498
|
+
.text-overflow-other {
|
|
14499
|
+
overflow: hidden;
|
|
14500
|
+
white-space: nowrap;
|
|
14501
|
+
text-overflow: ellipsis;
|
|
14502
|
+
width: calc(100% - 60px) !important;
|
|
14503
|
+
padding-right: 0;
|
|
14504
|
+
}
|
|
14505
|
+
.wx-span {
|
|
14506
|
+
width: 100%;
|
|
14507
|
+
}
|
|
14508
|
+
.search-empty-com {
|
|
14509
|
+
display: flex;
|
|
14510
|
+
width: 100%;
|
|
14511
|
+
height: 170px;
|
|
14512
|
+
flex-direction: column;
|
|
14513
|
+
justify-content: center;
|
|
14514
|
+
color: rgba(0, 0, 0, 0.45);
|
|
14515
|
+
align-items: center;
|
|
14516
|
+
border-radius: 2px;
|
|
14517
|
+
}
|
|
14518
|
+
|
|
14404
14519
|
/**
|
|
14405
14520
|
* style.less
|
|
14406
14521
|
* @author wangbo
|
|
@@ -14789,6 +14904,9 @@ body {
|
|
|
14789
14904
|
font-weight: 400;
|
|
14790
14905
|
font-size: 14px;
|
|
14791
14906
|
}
|
|
14907
|
+
.grid-area-new .customer-benefit-area-new .info-tip {
|
|
14908
|
+
cursor: pointer;
|
|
14909
|
+
}
|
|
14792
14910
|
.grid-area-new .customer-order-area-new {
|
|
14793
14911
|
height: calc(100% - 16px);
|
|
14794
14912
|
width: 100%;
|
|
@@ -15285,7 +15403,7 @@ body {
|
|
|
15285
15403
|
}
|
|
15286
15404
|
.grid-area-new .customer-account-new .account-info-right .info-copy .newCloud-icon {
|
|
15287
15405
|
cursor: pointer;
|
|
15288
|
-
color: rgba(0, 0, 0, 0.
|
|
15406
|
+
color: rgba(0, 0, 0, 0.25);
|
|
15289
15407
|
}
|
|
15290
15408
|
.grid-area-new .tips-label {
|
|
15291
15409
|
text-align: right;
|
|
@@ -15320,56 +15438,6 @@ body {
|
|
|
15320
15438
|
height: calc(100% - 50px);
|
|
15321
15439
|
}
|
|
15322
15440
|
|
|
15323
|
-
body {
|
|
15324
|
-
margin: 0;
|
|
15325
|
-
--shuyunBlue1: #EDF6FF;
|
|
15326
|
-
--shuyunBlue2: #CCE6FF;
|
|
15327
|
-
--shuyunBlue3: #72B0ED;
|
|
15328
|
-
--shuyunBlue4: #0066CC;
|
|
15329
|
-
--shuyunBlue5: #004CA3;
|
|
15330
|
-
--shuyunBlue6: #003775;
|
|
15331
|
-
--shuyunBlue7: #002147;
|
|
15332
|
-
}
|
|
15333
|
-
.over-length-tip-common {
|
|
15334
|
-
width: 100%;
|
|
15335
|
-
cursor: pointer;
|
|
15336
|
-
overflow: hidden;
|
|
15337
|
-
white-space: nowrap;
|
|
15338
|
-
text-overflow: ellipsis;
|
|
15339
|
-
}
|
|
15340
|
-
.over-length-tip-href {
|
|
15341
|
-
display: block;
|
|
15342
|
-
width: 100%;
|
|
15343
|
-
overflow: hidden;
|
|
15344
|
-
white-space: nowrap;
|
|
15345
|
-
text-overflow: ellipsis;
|
|
15346
|
-
color: var(--shuyunBlue4) !important;
|
|
15347
|
-
cursor: pointer;
|
|
15348
|
-
}
|
|
15349
|
-
.over-length-tip-href:hover {
|
|
15350
|
-
color: var(--shuyunBlue4) !important;
|
|
15351
|
-
}
|
|
15352
|
-
.text-overflow-other {
|
|
15353
|
-
overflow: hidden;
|
|
15354
|
-
white-space: nowrap;
|
|
15355
|
-
text-overflow: ellipsis;
|
|
15356
|
-
width: calc(100% - 60px) !important;
|
|
15357
|
-
padding-right: 0;
|
|
15358
|
-
}
|
|
15359
|
-
.wx-span {
|
|
15360
|
-
width: 100%;
|
|
15361
|
-
}
|
|
15362
|
-
.search-empty-com {
|
|
15363
|
-
display: flex;
|
|
15364
|
-
width: 100%;
|
|
15365
|
-
height: 170px;
|
|
15366
|
-
flex-direction: column;
|
|
15367
|
-
justify-content: center;
|
|
15368
|
-
color: rgba(0, 0, 0, 0.45);
|
|
15369
|
-
align-items: center;
|
|
15370
|
-
border-radius: 2px;
|
|
15371
|
-
}
|
|
15372
|
-
|
|
15373
15441
|
/**
|
|
15374
15442
|
* index.less
|
|
15375
15443
|
* wangbo
|
|
@@ -16434,7 +16502,7 @@ body {
|
|
|
16434
16502
|
}
|
|
16435
16503
|
.edit-tag .edit-tag-container .edit-tag-form .newCloud-form-item-label {
|
|
16436
16504
|
color: rgba(0, 0, 0, 0.85);
|
|
16437
|
-
margin-bottom:
|
|
16505
|
+
margin-bottom: 12px;
|
|
16438
16506
|
}
|
|
16439
16507
|
.edit-tag .edit-tag-container .edit-tag-form .edit-tag-header {
|
|
16440
16508
|
padding: 0 16px;
|
|
@@ -16543,6 +16611,17 @@ body {
|
|
|
16543
16611
|
color: rgba(0, 0, 0, 0.85);
|
|
16544
16612
|
line-height: 20px;
|
|
16545
16613
|
}
|
|
16614
|
+
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-wrapper-form {
|
|
16615
|
+
padding: 0 !important;
|
|
16616
|
+
width: 100% !important;
|
|
16617
|
+
}
|
|
16618
|
+
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-wrapper-form .has-error .newCloud-picker {
|
|
16619
|
+
border-color: #e8e8e8 !important;
|
|
16620
|
+
}
|
|
16621
|
+
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-wrapper-form .has-error > .newCloud-input,
|
|
16622
|
+
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-wrapper-form .has-error > .newCloud-picker {
|
|
16623
|
+
border-color: red !important;
|
|
16624
|
+
}
|
|
16546
16625
|
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance {
|
|
16547
16626
|
width: 505px;
|
|
16548
16627
|
background: #FFFFFF;
|
|
@@ -16557,13 +16636,17 @@ body {
|
|
|
16557
16636
|
display: flex;
|
|
16558
16637
|
align-items: center;
|
|
16559
16638
|
justify-content: space-between;
|
|
16560
|
-
cursor: pointer;
|
|
16561
16639
|
}
|
|
16562
16640
|
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-title .title {
|
|
16563
16641
|
font-size: 14px;
|
|
16564
16642
|
font-weight: 400;
|
|
16565
16643
|
color: rgba(0, 0, 0, 0.85);
|
|
16566
16644
|
line-height: 20px;
|
|
16645
|
+
display: flex;
|
|
16646
|
+
align-items: center;
|
|
16647
|
+
}
|
|
16648
|
+
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-title .newCloud-form-item {
|
|
16649
|
+
width: 270px !important;
|
|
16567
16650
|
}
|
|
16568
16651
|
.edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-content {
|
|
16569
16652
|
padding: 16px 12px 0 12px;
|
|
@@ -18193,7 +18276,7 @@ body {
|
|
|
18193
18276
|
color: #E8E8E8;
|
|
18194
18277
|
}
|
|
18195
18278
|
.add-goods-btn .add-goods-match-search {
|
|
18196
|
-
padding: 0
|
|
18279
|
+
padding: 0 11px;
|
|
18197
18280
|
color: rgba(0, 0, 0, 0.65);
|
|
18198
18281
|
cursor: pointer;
|
|
18199
18282
|
}
|