@zkwq/business 0.0.11 → 0.0.13

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.
@@ -38386,7 +38386,7 @@
38386
38386
  }
38387
38387
 
38388
38388
  body {
38389
- font-family: "pingfang SC", "helvetica neue", arial, "hiragino sans gb", "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
38389
+ font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
38390
38390
  font-size: 14px;
38391
38391
  color: #121212;
38392
38392
  background-color: #F3F5F8;
@@ -38473,6 +38473,103 @@ button {
38473
38473
  *:focus {
38474
38474
  outline: none;
38475
38475
  }
38476
+ .Container {
38477
+ display: flex;
38478
+ flex-direction: column;
38479
+ flex: 1;
38480
+ flex-basis: auto;
38481
+ box-sizing: border-box;
38482
+ min-width: 0;
38483
+ }
38484
+ .Container.is-horizontal {
38485
+ flex-direction: row;
38486
+ }
38487
+ .Header {
38488
+ flex-shrink: 0;
38489
+ height: 50px;
38490
+ }
38491
+ .Aside {
38492
+ flex-shrink: 0;
38493
+ overflow: hidden;
38494
+ transition: width 0.2s;
38495
+ border-right: 1px solid #e6e6e6;
38496
+ box-sizing: border-box;
38497
+ }
38498
+ .Footer {
38499
+ flex-shrink: 0;
38500
+ }
38501
+ .Main {
38502
+ display: block;
38503
+ flex: 1;
38504
+ flex-basis: auto;
38505
+ overflow: hidden;
38506
+ }
38507
+ .Content {
38508
+ height: calc(100vh - 50px);
38509
+ }
38510
+ .Color--success {
38511
+ color: #67C23A !important;
38512
+ }
38513
+ .Color--regular {
38514
+ color: #646464 !important;
38515
+ }
38516
+ .Color--secondary {
38517
+ color: #8590a6 !important;
38518
+ }
38519
+ .Color--primary {
38520
+ color: #2F3A91 !important;
38521
+ }
38522
+ .Color--warning {
38523
+ color: #FF791A !important;
38524
+ }
38525
+ .Color--danger {
38526
+ color: #F1403C !important;
38527
+ }
38528
+ .Button--primary {
38529
+ color: #2F3A91;
38530
+ }
38531
+ .Button--primary:hover {
38532
+ color: #2F3A91;
38533
+ }
38534
+ .Seperator {
38535
+ margin-right: 4px;
38536
+ }
38537
+ .Seperator--large {
38538
+ margin-right: 8px;
38539
+ }
38540
+ .Dot {
38541
+ margin: 0 8px;
38542
+ }
38543
+ .Dot--small {
38544
+ margin: 0 4px;
38545
+ }
38546
+ .Dot--mini {
38547
+ margin: 0 2px;
38548
+ }
38549
+
38550
+ .FormActions {
38551
+ text-align: center;
38552
+ }
38553
+ .FormButton {
38554
+ width: 220px;
38555
+ margin-top: 16px;
38556
+ }
38557
+ .FormItem__tip {
38558
+ color: #C0C4CC;
38559
+ line-height: 1;
38560
+ margin-top: 12px;
38561
+ }
38562
+ .FormLabel {
38563
+ color: #8590a6;
38564
+ line-height: 1.5;
38565
+ }
38566
+ .FormLabel i {
38567
+ color: #2F3A91;
38568
+ font-size: 16px;
38569
+ font-weight: 600;
38570
+ margin-right: 8px;
38571
+ vertical-align: -2px;
38572
+ }
38476
38573
 
38477
38574
  .App__scroll {
38478
38575
  height: 100%;
@@ -38487,6 +38584,70 @@ button {
38487
38584
  overflow: hidden;
38488
38585
  }
38489
38586
 
38587
+ .Card {
38588
+ margin-bottom: 10px;
38589
+ background: #FFFFFF;
38590
+ position: relative;
38591
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
38592
+ box-shadow: none;
38593
+ border: none;
38594
+ overflow: hidden;
38595
+ }
38596
+ .Card:last-child {
38597
+ margin-bottom: 0;
38598
+ }
38599
+ .Card:hover {
38600
+ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
38601
+ }
38602
+ .Card__header {
38603
+ display: flex;
38604
+ justify-content: space-between;
38605
+ align-items: center;
38606
+ height: 50px;
38607
+ padding: 0 20px;
38608
+ border-bottom: 1px solid #F3F5F8 !important;
38609
+ box-sizing: border-box;
38610
+ font-size: 15px;
38611
+ }
38612
+ .Card__footer {
38613
+ display: flex;
38614
+ justify-content: space-between;
38615
+ align-items: center;
38616
+ height: 50px;
38617
+ padding: 0 20px;
38618
+ border-top: 1px solid #F3F5F8;
38619
+ box-sizing: border-box;
38620
+ }
38621
+ .Card__headerText {
38622
+ color: #121212;
38623
+ font-weight: 600;
38624
+ display: flex;
38625
+ align-items: center;
38626
+ }
38627
+ .Card__section {
38628
+ padding: 16px 20px;
38629
+ position: relative;
38630
+ }
38631
+ .Card__section .Card__header {
38632
+ margin-top: -16px;
38633
+ }
38634
+ .Card__section .Card__section {
38635
+ padding-bottom: 0;
38636
+ }
38637
+ .Card__section + .Card__section:after {
38638
+ position: absolute;
38639
+ top: 0;
38640
+ left: 0;
38641
+ right: 0;
38642
+ margin: 0 16px;
38643
+ display: block;
38644
+ border-bottom: 1px solid #F3F5F8;
38645
+ content: "";
38646
+ }
38647
+ .Card .Card__section + .Card__header {
38648
+ border-top: 1px solid #F3F5F8;
38649
+ }
38650
+
38490
38651
  .List__header {
38491
38652
  display: flex;
38492
38653
  justify-content: space-between;
@@ -38519,7 +38680,7 @@ button {
38519
38680
  top: 0;
38520
38681
  margin: 0 20px;
38521
38682
  display: block;
38522
- border-bottom: 1px solid #f0f2f7;
38683
+ border-bottom: 1px solid #F2F6FC;
38523
38684
  content: "";
38524
38685
  }
38525
38686
 
@@ -38553,114 +38714,41 @@ button {
38553
38714
  margin-right: 5px;
38554
38715
  }
38555
38716
 
38556
- .FormActions {
38557
- text-align: center;
38717
+ .ContentLayout {
38718
+ width: 1200px;
38719
+ margin: 8px auto 10px;
38720
+ display: flex;
38721
+ justify-content: space-between;
38722
+ align-items: flex-start;
38558
38723
  }
38559
- .FormButton {
38560
- width: 220px;
38561
- margin-top: 16px;
38724
+ .ContentLayout__mainColumn {
38725
+ margin-right: 10px;
38726
+ width: 834px;
38562
38727
  }
38563
- .FormButton .Icon {
38564
- margin-right: 6px;
38728
+ .ContentLayout__sideColumn {
38729
+ width: 356px;
38730
+ flex-shrink: 0;
38565
38731
  }
38566
-
38567
- .Card {
38568
- margin-bottom: 10px;
38569
- background: #FFFFFF;
38732
+ .ContentLayout__sideColumn .JournalItem {
38733
+ white-space: nowrap;
38570
38734
  overflow: hidden;
38571
- border-radius: 2px;
38572
- box-shadow: 0 1px 3px rgba(18, 18, 18, 0.1);
38573
- }
38574
- .Card:last-child {
38735
+ text-overflow: ellipsis;
38736
+ width: 200px;
38575
38737
  margin-bottom: 0;
38576
38738
  }
38577
- .Card__header {
38739
+ .ContentItem__actions {
38578
38740
  display: flex;
38579
- justify-content: space-between;
38580
38741
  align-items: center;
38581
- height: 50px;
38582
- padding: 0 20px;
38583
- border-bottom: 1px solid #F3F5F8;
38584
- box-sizing: border-box;
38585
- }
38586
- .Card__footer {
38587
- display: flex;
38588
- justify-content: space-between;
38589
- align-items: center;
38590
- height: 50px;
38591
- padding: 0 20px;
38592
- border-top: 1px solid #F3F5F8;
38593
- box-sizing: border-box;
38594
- }
38595
- .Card__headerText {
38596
- font-size: 15px;
38597
- color: #121212;
38598
- font-weight: 600;
38599
- }
38600
- .Card__section {
38601
- padding: 16px 20px;
38602
- position: relative;
38603
- }
38604
- .Card__section + .Card__section:after {
38605
- position: absolute;
38606
- top: 0;
38607
- left: 0;
38608
- right: 0;
38609
- margin: 0 16px;
38610
- display: block;
38611
- border-bottom: 1px solid #F3F5F8;
38612
- content: "";
38613
- }
38614
- .Card .Card__section + .Card__header {
38615
- border-top: 1px solid #F3F5F8;
38616
- }
38617
-
38618
- .Tags .base-tag.base-tag--small {
38619
- padding: 0 16px;
38620
- transition: color 0.3s, padding 0.3s, opacity 1s, transform 1s, position 1s;
38621
- cursor: pointer;
38622
- }
38623
- .Tags .base-tag.base-tag--small:hover {
38624
- padding-left: 8px;
38625
- padding-right: 8px;
38626
- }
38627
- .Tags .base-tag.base-tag--small:hover .base-icon-close {
38628
- width: 16px;
38629
- }
38630
- .Tags .base-tag.base-tag--small .base-icon-close {
38631
- width: 0;
38632
- overflow: hidden;
38633
- transition: all 0.3s;
38634
- }
38635
- .Separator--large {
38636
- margin-right: 8px !important;
38637
- }
38638
- .Dot {
38639
- margin: 0 8px !important;
38640
- }
38641
- .Dot--small {
38642
- margin: 0 4px !important;
38643
- }
38644
- .Dot--mini {
38645
- margin: 0 2px !important;
38646
- }
38647
- .ContentItem__action + .ContentItem__action {
38648
- margin-left: 16px;
38649
- }
38650
- .ContentItem__actions > * {
38651
- flex-shrink: 0;
38742
+ padding: 10px 20px;
38743
+ margin: 0 -20px -10px;
38744
+ color: #646464;
38745
+ background: #FFFFFF;
38746
+ clear: both;
38747
+ cursor: default;
38652
38748
  }
38653
38749
  .ContentItem__action {
38654
38750
  display: flex;
38655
38751
  align-items: center;
38656
- background-color: #f9f6e6;
38657
- color: #75540d;
38658
- line-height: 26px;
38659
- border-color: transparent;
38660
- padding: 0 10px;
38661
- }
38662
- .ContentItem__action:hover {
38663
- opacity: 0.8;
38664
38752
  }
38665
38753
  .ContentItem__action .Icon {
38666
38754
  margin-right: 5px;
@@ -38675,191 +38763,107 @@ button {
38675
38763
  margin-top: 2px;
38676
38764
  }
38677
38765
  .ContentItem__action.is-active, .ContentItem__action.is-collect, .ContentItem__action.is-subscribe {
38678
- color: #F1403C;
38766
+ color: #2F3A91;
38679
38767
  }
38680
38768
  .ContentItem__action .base-icon-link, .ContentItem__action .base-icon-download, .ContentItem__action .base-icon-edit-outline {
38681
38769
  font-size: 16px;
38682
38770
  font-weight: 600;
38683
38771
  }
38684
- .MoreActionButton {
38685
- margin: 0 16px;
38686
- }
38687
- .MoreActionButton .ContentItem__action {
38688
- background: transparent;
38772
+ .ContentItem__action + .ContentItem__action {
38773
+ margin-left: 24px;
38689
38774
  }
38690
- .AppSearchHistory__tags .base-tag {
38691
- margin: 4px 8px 0 0;
38692
- max-width: 140px;
38693
- overflow: hidden;
38694
- white-space: nowrap;
38695
- text-overflow: ellipsis;
38775
+ .ContentItem__actions > * {
38776
+ -ms-flex-negative: 0;
38777
+ flex-shrink: 0;
38696
38778
  }
38697
- .AppSearchHistory__tags .base-tag.tags-enter, .AppSearchHistory__tags .base-tag.tags-leave-to {
38698
- opacity: 0;
38699
- transform: translateY(30px);
38779
+ .Highlight {
38780
+ color: #F1403C !important;
38700
38781
  }
38701
- .AppSearchHistory__tags .base-tag.tags-leave-active {
38702
- position: absolute;
38703
- width: fit-content;
38782
+ .toosCategory .el-radio-button__inner {
38783
+ padding: 8px 14px;
38704
38784
  }
38705
- .AppSearchHistory__tags {
38706
- display: flex;
38707
- flex-wrap: wrap;
38708
- margin-bottom: -12px;
38785
+
38786
+ .Tags {
38787
+ margin: -5px 0;
38709
38788
  }
38710
- .AppSearchHistory__tag {
38711
- max-width: 200px;
38712
- cursor: pointer;
38713
- overflow: hidden;
38714
- white-space: nowrap;
38715
- text-overflow: ellipsis;
38716
- background: #f1f2f5;
38717
- border-radius: 2px;
38718
- height: 26px;
38719
- line-height: 26px;
38720
- font-size: 13px;
38721
- padding: 0 10px;
38722
- box-sizing: border-box;
38723
- margin-right: 12px;
38724
- margin-bottom: 12px;
38725
- display: inline-block;
38789
+ .Tags .base-tag {
38790
+ margin: 5px 10px 5px 0;
38726
38791
  }
38727
- .AppSearchHistory__tag:hover {
38728
- color: #2F3A91;
38792
+ .Tags .base-tag.tags-enter, .Tags .base-tag.tags-leave-to {
38793
+ opacity: 0;
38794
+ transform: translateY(30px);
38729
38795
  }
38730
- .AppSearchHistory__tagClose {
38796
+ .Tags .base-tag.tags-leave-active {
38731
38797
  position: absolute;
38732
- right: -6px;
38733
- top: -6px;
38734
- width: 12px;
38735
- height: 12px;
38736
- border-width: 0;
38737
- cursor: pointer;
38738
- pointer-events: none;
38739
- transition: all 0.3s ease-in-out;
38740
- }
38741
- .AppSearchHistory__tags--small {
38742
- margin-bottom: -10px;
38798
+ width: fit-content;
38743
38799
  }
38744
- .AppSearchHistory__tag--small {
38745
- max-width: 140px;
38746
- margin-right: 10px;
38747
- margin-bottom: 10px;
38748
- font-size: 12px;
38800
+ .high_light {
38801
+ background: white;
38802
+ color: red;
38749
38803
  }
38750
- .Highlight {
38751
- background-color: #FFFF66;
38804
+ .groupData .base-tabs__content {
38805
+ padding: 0 0 0 10px !important;
38752
38806
  }
38753
38807
  .Width--100 {
38754
- width: 100%;
38755
- }
38756
- .Separator {
38757
- margin-right: 2px;
38758
- }
38759
- .FruitSuggestionPopper .base-autocomplete-suggestion__list li {
38760
- height: auto;
38761
- line-height: normal;
38762
- padding: 8px 20px;
38763
- }
38764
- .FruitSuggestionPopper .FruitSuggestionPopper__content {
38765
- max-width: 88%;
38766
- }
38767
- .FruitSuggestionPopper .FruitSuggestionPopper__meta {
38768
- font-size: 12px;
38769
- color: #8590a6;
38770
- margin-top: 2px;
38771
- white-space: normal;
38772
- }
38773
- .FruitSuggestionPopper .FruitSuggestionPopper__title {
38774
- white-space: normal;
38775
- }
38776
- .FruitSuggestionPopper .FruitSuggestionPopper__button {
38777
- padding: 4px 12px !important;
38778
- }
38779
- .FruitSuggestionPopper.base-popper {
38780
- max-width: 535px;
38781
- }
38782
- .FruitSuggestionPopper .base-select-dropdown__list {
38783
- padding-bottom: 23px;
38784
- }
38785
- .CLCCascaderPopper {
38786
- max-height: 80vh;
38787
- }
38788
- .CLCCascaderPopper .base-cascader-menu__item {
38789
- max-width: 260px;
38790
- }
38791
- .CLCCascaderPopper .base-cascader-menu__item span {
38792
- max-width: 200px;
38793
- display: inline-block;
38794
- overflow: hidden;
38795
- text-overflow: ellipsis;
38808
+ width: 100% !important;
38796
38809
  }
38797
- .CLCCascaderPopper .base-cascader-menu--flexible {
38798
- max-width: 469px;
38810
+ .UploadImageDialog {
38811
+ display: flex;
38812
+ flex-direction: column;
38813
+ max-height: calc(100vh - 48px);
38814
+ outline: 0;
38799
38815
  }
38800
- .CLCCascaderPopper .base-cascader-menu--flexible .base-cascader-menu__item {
38801
- max-width: 100%;
38816
+ .Dialog__inner {
38817
+ overflow: auto;
38818
+ max-height: calc(100vh - 48px);
38819
+ -webkit-transition: max-height 0.8s ease;
38820
+ transition: max-height 0.8s ease;
38802
38821
  }
38803
- .CLCCascaderPopper .base-cascader-menu--flexible .base-cascader-menu__item span {
38804
- max-width: 100%;
38822
+
38823
+ .EmptyState {
38824
+ display: flex;
38825
+ align-items: center;
38826
+ justify-content: center;
38827
+ flex: 1;
38828
+ height: 100%;
38829
+ padding: 70px 0;
38805
38830
  }
38806
- .CLCCascaderPopper .base-cascader-menu--flexible .base-cascader-menu__item span.base-cascader-menu__item__keyword {
38807
- display: inline;
38808
- padding-right: 0;
38831
+ .EmptyState__inner {
38832
+ color: #8590A6;
38833
+ text-align: center;
38834
+ padding-bottom: 26px;
38809
38835
  }
38810
- .ExportListItem {
38811
- font-size: 14px;
38812
- padding: 0 20px;
38813
- position: relative;
38814
- white-space: nowrap;
38815
- overflow: hidden;
38816
- text-overflow: ellipsis;
38817
- color: #8590a6;
38818
- height: 34px;
38819
- line-height: 34px;
38820
- box-sizing: border-box;
38821
- cursor: pointer;
38836
+ .EmptyState__image {
38837
+ display: block;
38838
+ margin: 0 auto;
38822
38839
  }
38823
- .ExportListItem:hover .Button {
38824
- color: #2F3A91;
38840
+ .Modal__closeButton {
38841
+ position: absolute;
38842
+ top: 8px;
38843
+ right: -60px;
38844
+ padding: 12px;
38845
+ color: #fff;
38825
38846
  }
38826
- .ExportPopper {
38827
- padding: 6px 0;
38828
- min-width: 80px;
38829
- background-image: linear-gradient(0deg, #fff 0%, #f3f5f8 100%);
38830
- border: 2px solid #fff;
38831
- box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.1);
38832
- border-radius: 4px;
38847
+ .Dialog__title {
38848
+ margin-top: 40px;
38849
+ font-size: 24px;
38850
+ font-weight: 500;
38851
+ color: #1a1a1a;
38833
38852
  text-align: center;
38834
38853
  }
38835
- .ExportPopper.base-popper[x-placement^=bottom] {
38854
+ .Dialog__subtitle {
38855
+ padding: 0 38px;
38836
38856
  margin-top: 4px;
38837
- }
38838
- .MoreActionPopper {
38839
- background-image: linear-gradient(0deg, #fff 0%, #f3f5f8 100%);
38840
- border: 2px solid #fff;
38841
- box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.1);
38842
- border-radius: 4px;
38843
- }
38844
- .MoreActionPopper.base-popper[x-placement^=bottom] {
38845
- margin-top: 2px;
38846
- }
38847
- .MoreActionPopper .base-dropdown-menu__item {
38857
+ font-size: 14px;
38858
+ line-height: 1.5;
38859
+ color: #8590a6;
38848
38860
  text-align: center;
38849
38861
  }
38850
- .MoreActionPopper .base-dropdown-menu__item {
38851
- padding: 0 12px;
38852
- }
38853
- .MoreActionPopper .base-dropdown-menu__item.hover {
38854
- background: transparent;
38855
- }
38856
- .MoreActionPopper .base-dropdown-menu__item:hover {
38857
- background: transparent;
38858
- color: #2F3A91;
38862
+ .DialogButtonGroup .el-button {
38863
+ padding: 12px 20px;
38859
38864
  }
38860
- .MoreActionPopper .base-dropdown-menu__item.selected {
38861
- font-weight: 500;
38862
- cursor: default;
38865
+ .FeedSource .ContentItem__author {
38866
+ margin-bottom: 10px;
38863
38867
  }
38864
38868
 
38865
38869
 
@@ -40278,4 +40282,105 @@ button {
40278
40282
  }
40279
40283
  .ArticleTable__tableData.is-active:hover {
40280
40284
  color: #2F3A91;
40285
+ }
40286
+
40287
+
40288
+
40289
+
40290
+
40291
+
40292
+
40293
+
40294
+
40295
+
40296
+
40297
+ :export {
40298
+ primary: #2F3A91;
40299
+ success: #67C23A;
40300
+ warning: #FF791A;
40301
+ danger: #F1403C;
40302
+ info: #8590a6;
40303
+ }
40304
+
40305
+
40306
+
40307
+
40308
+
40309
+
40310
+
40311
+
40312
+
40313
+
40314
+
40315
+
40316
+
40317
+
40318
+
40319
+
40320
+
40321
+
40322
+
40323
+
40324
+
40325
+
40326
+
40327
+
40328
+
40329
+
40330
+
40331
+
40332
+
40333
+
40334
+
40335
+
40336
+
40337
+
40338
+
40339
+
40340
+
40341
+
40342
+
40343
+
40344
+
40345
+
40346
+
40347
+
40348
+
40349
+
40350
+
40351
+
40352
+
40353
+
40354
+
40355
+
40356
+
40357
+
40358
+
40359
+ .Tabs .base-tabs--top .base-tabs__header.is-top {
40360
+ margin-top: 0;
40361
+ margin-bottom: 0;
40362
+ padding-left: 20px;
40363
+ }
40364
+ .Tabs .base-tabs__item {
40365
+ font-size: 16px;
40366
+ height: 50px;
40367
+ line-height: 50px;
40368
+ color: #121212;
40369
+ transition: color 0.3s;
40370
+ }
40371
+ .Tabs .base-tabs__item:hover {
40372
+ color: #2F3A91;
40373
+ }
40374
+ .Tabs .base-tabs__nav-wrap {
40375
+ margin-bottom: 0;
40376
+ }
40377
+ .Tabs .base-tabs__nav-wrap:after {
40378
+ height: 0;
40379
+ }
40380
+ .Tabs .base-tabs__active-bar {
40381
+ height: 4px;
40382
+ }
40383
+ .Tabs .base-tabs__item.is-active {
40384
+ color: #121212;
40385
+ font-weight: 600;
40281
40386
  }