bri-components 1.1.6 → 1.2.0

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.
Files changed (111) hide show
  1. package/lib/0.bri-components.min.js +1 -1
  2. package/lib/1.bri-components.min.js +1 -1
  3. package/lib/2.bri-components.min.js +1 -1
  4. package/lib/3.bri-components.min.js +1 -1
  5. package/lib/4.bri-components.min.js +1 -1
  6. package/lib/5.bri-components.min.js +1 -1
  7. package/lib/6.bri-components.min.js +1 -1
  8. package/lib/bri-components.min.js +6 -6
  9. package/lib/styles/bri-components.css +1 -1
  10. package/package.json +1 -1
  11. package/src/abolish/DshFileShow.less +61 -0
  12. package/src/{components/small → abolish}/DshFileShow.vue +30 -105
  13. package/src/components/controls/base/BriUpload/{index.vue → BriUpload.vue} +3 -3
  14. package/src/components/controls/base/BriUpload/{upload-list.vue → uploadList.vue} +17 -13
  15. package/src/components/controls/base/BriUpload/uploadMixin.js +1 -5
  16. package/src/components/controls/base/DshCascader/DshCascader.vue +91 -93
  17. package/src/components/controls/base/DshCheckbox.vue +3 -3
  18. package/src/components/controls/base/DshCoordinates.vue +2 -2
  19. package/src/components/controls/base/DshDate.vue +21 -10
  20. package/src/components/controls/base/DshEditor.vue +33 -48
  21. package/src/components/controls/base/DshInput.vue +21 -19
  22. package/src/components/controls/base/DshNumber/DshNumber.vue +23 -22
  23. package/src/components/controls/base/DshSelect.vue +2 -2
  24. package/src/components/controls/base/DshSwitch.vue +2 -2
  25. package/src/components/controls/controlMap.js +1 -1
  26. package/src/components/controls/controlMixin.js +5 -8
  27. package/src/components/controls/senior/BriLabels.vue +72 -54
  28. package/src/components/controls/special/DshUndeveloped.vue +0 -6
  29. package/src/components/form/DshForm.vue +4 -17
  30. package/src/components/list/BriTable.vue +1 -1
  31. package/src/components/list/{ZTree.vue → BriTree.vue} +9 -8
  32. package/src/components/list/DshBox/DshCard.vue +4 -4
  33. package/src/components/list/DshBox/DshCrossTable.vue +4 -4
  34. package/src/components/list/DshBox/DshList.vue +2 -2
  35. package/src/components/list/DshBox/DshPanel.vue +5 -5
  36. package/src/components/list/DshBox/DshTable.vue +21 -80
  37. package/src/components/list/DshCascaderTable.vue +2 -2
  38. package/src/components/other/{ZCode.vue → BriCode.vue} +2 -9
  39. package/src/components/other/{ZCollapseTree.vue → BriCollapseTree.vue} +37 -16
  40. package/src/components/other/{ZIframe.vue → BriIframe.vue} +7 -23
  41. package/src/components/other/{ZLoading.vue → BriLoading.vue} +25 -11
  42. package/src/components/other/BriSvg.vue +2 -2
  43. package/src/components/other/DshAvatar.vue +21 -69
  44. package/src/components/other/DshColorPanel.vue +0 -43
  45. package/src/components/small/{Ctooltip.vue → BriTooltip.vue} +2 -2
  46. package/src/components/small/DshButtons.vue +2 -2
  47. package/src/components/small/DshCrumbs.vue +1 -0
  48. package/src/components/small/DshCrumbsItem.vue +5 -3
  49. package/src/components/small/DshIcons.vue +0 -14
  50. package/src/components/small/DshTags.vue +7 -2
  51. package/src/components/unit/DshFormItem.vue +4 -4
  52. package/src/components/unit/DshUnit.vue +0 -8
  53. package/src/index.js +93 -104
  54. package/src/styles/common/control.less +56 -51
  55. package/src/styles/components/controls/base/BriUpload/BriUpload.less +159 -0
  56. package/src/styles/components/controls/base/BriUpload/BriUploadImage.less +81 -0
  57. package/src/styles/components/controls/base/BriUpload/index.less +3 -0
  58. package/src/styles/components/controls/base/BriUpload/uploadList.less +164 -0
  59. package/src/styles/components/controls/base/DshCascader/DshCascader.less +124 -0
  60. package/src/styles/components/controls/base/DshCascader/index.less +2 -0
  61. package/src/styles/components/controls/base/DshCheckbox.less +3 -2
  62. package/src/styles/components/controls/base/DshDate.less +12 -0
  63. package/src/styles/components/controls/base/DshEditor.less +25 -47
  64. package/src/styles/components/controls/base/DshInput.less +9 -1
  65. package/src/styles/components/controls/base/DshNumber.less +43 -26
  66. package/src/styles/components/controls/base/DshSelect.less +11 -0
  67. package/src/styles/components/controls/senior/BriLabels.less +29 -12
  68. package/src/styles/components/controls/special/DshBack.less +3 -0
  69. package/src/styles/components/controls/special/DshUndeveloped.less +3 -0
  70. package/src/styles/components/form/DshAdvSearchForm.less +0 -1
  71. package/src/styles/components/form/DshDefaultSearch.less +1 -1
  72. package/src/styles/components/form/DshForm.less +13 -0
  73. package/src/styles/components/index.less +43 -36
  74. package/src/styles/components/list/BriTable.less +9 -9
  75. package/src/styles/components/list/{ZTree.less → BriTree.less} +11 -7
  76. package/src/styles/components/list/DshBox/DshTable.less +11 -0
  77. package/src/styles/components/other/BriCode.less +5 -0
  78. package/src/styles/components/other/{ZCollapseTree.less → BriCollapseTree.less} +2 -2
  79. package/src/styles/components/other/BriIframe.less +16 -0
  80. package/src/styles/components/other/{ZLoading.less → BriLoading.less} +3 -3
  81. package/src/styles/components/other/DshAvatar.less +64 -0
  82. package/src/styles/components/other/DshBtnModal.less +3 -0
  83. package/src/styles/components/other/DshColorPanel.less +40 -0
  84. package/src/styles/components/other/DshEditPanel.less +2 -2
  85. package/src/styles/components/small/BriButton.less +3 -2
  86. package/src/styles/components/small/{Ctooltip.less → BriTooltip.less} +2 -1
  87. package/src/styles/components/small/DshCrumbs.less +0 -0
  88. package/src/styles/components/small/DshDropdown.less +5 -3
  89. package/src/styles/components/small/DshIcons.less +7 -0
  90. package/src/styles/components/small/DshTags.less +17 -0
  91. package/src/styles/components/unit/DshFormItem.less +4 -4
  92. package/src/styles/components/unit/DshUnit.less +5 -0
  93. package/src/utils/table.js +8 -0
  94. package/src/components/controls/controlShow.vue +0 -44
  95. package/src/components/other/YNoPermission.vue +0 -45
  96. package/src/components/small/BriTree.vue +0 -42
  97. package/src/styles/components/controls/base/BriUpload.less +0 -436
  98. package/src/styles/components/controls/base/DshCascader.less +0 -110
  99. package/src/styles/components/controls/controlShow.less +0 -12
  100. package/src/styles/components/other/ZCode.less +0 -1
  101. /package/src/{styles/components/other → abolish}/BriTransfer.less +0 -0
  102. /package/src/{components/other → abolish}/BriTransfer.vue +0 -0
  103. /package/src/{styles/components/small → abolish}/BriTree.less +0 -0
  104. /package/src/components/{small → list}/DshPage.vue +0 -0
  105. /package/src/components/other/{ZGantt.vue → BriGantt.vue} +0 -0
  106. /package/src/components/other/{menu/DshMenu.vue → DshMenu.vue} +0 -0
  107. /package/src/components/other/{menu/DshMenuNav.vue → DshMenuNav.vue} +0 -0
  108. /package/src/styles/components/controls/base/{InfoCascader.less → DshCascader/InfoCascader.less} +0 -0
  109. /package/src/styles/components/{small → list}/DshPage.less +0 -0
  110. /package/src/styles/components/other/{ZGantt.less → BriGantt.less} +0 -0
  111. /package/src/{components/controls/base/BriUpload/upload-listItem.vue → styles/components/small/DshCrumbItem.less} +0 -0
@@ -1,19 +1,31 @@
1
- .DshEditor {
2
- .DshEditor-common () {
1
+ .DshEditor {
2
+ width: 100%;
3
+ #show {
4
+ p {
5
+ font-size: 14px !important;
6
+ }
3
7
 
4
- };
8
+ li {
9
+ margin-left: 20px;
10
+ }
5
11
 
12
+ ul li {
13
+ list-style: disc;
14
+ }
6
15
 
7
- &-edit {
8
- border: 1px solid @borderColor;
9
- cursor: pointer;
10
-
11
- &:hover {
12
- border-color: @theme-hover;
16
+ ol li {
17
+ list-style: auto;
13
18
  }
19
+ }
14
20
 
15
- &-placeholder {
16
- color: @input-placeholder-color;
21
+ &-edit {
22
+ #show();
23
+ height: 100%;
24
+ min-height: 32px;
25
+ padding: 4px 7px;
26
+ border-radius: @borderRadius;
27
+ &.control-notext {
28
+ line-height: 24px;
17
29
  }
18
30
  }
19
31
 
@@ -42,46 +54,12 @@
42
54
  padding: 10px;
43
55
  }
44
56
  }
45
-
57
+
46
58
  &-unit {
47
59
  .unit-show();
48
- display: inline-block;
49
-
50
- &-nodata {
51
- .control-notext();
52
- }
53
60
  }
54
61
 
55
62
  &-show {
56
- height: 100%;
57
- min-height: 32px;
58
- padding: 4px 10px;
59
- border-radius: @borderRadius;
60
-
61
- &-disabled {
62
- .control-disabled();
63
- }
64
-
65
- &-nodata {
66
- padding-left: 0px;
67
- border: none;
68
- color: @grey3;
69
- }
70
-
71
- p {
72
- font-size: 14px !important;
73
- }
74
-
75
- li {
76
- margin-left: 20px;
77
- }
78
-
79
- ul li {
80
- list-style: disc;
81
- }
82
-
83
- ol li {
84
- list-style: auto;
85
- }
63
+ #show();
86
64
  }
87
65
  }
@@ -1,5 +1,9 @@
1
1
  .DshInput {
2
- width: 100%;
2
+ &-edit {
3
+ width: 100%;
4
+ }
5
+
6
+ &-unit {}
3
7
 
4
8
  &-show {
5
9
  &-textarea {
@@ -21,5 +25,9 @@
21
25
  &:hover {
22
26
  border-color: @border-disabled;
23
27
  }
28
+ &::-webkit-input-placeholder {
29
+ .control-disPlaceholder();
30
+ }
24
31
  }
32
+
25
33
  }
@@ -1,21 +1,27 @@
1
1
  .DshNumber {
2
2
  width: 100%;
3
3
 
4
- &-suffix {
5
- min-width: 32px;
6
- border-left: 1px solid @borderColor;
7
- background-color: #F0F0F0;
8
- text-align: center;
9
- color: @textColor;
4
+ &-edit {
5
+ &-suffix {
6
+ min-width: 32px;
7
+ border-left: 1px solid @borderColor;
8
+ background-color: #F0F0F0;
9
+ text-align: center;
10
+ color: @textColor;
11
+ }
12
+ }
13
+
14
+ &-unit {
15
+
16
+ }
17
+
18
+ &-show {
19
+
10
20
  }
11
21
  }
22
+
12
23
  .ivu-input-number {
13
24
  width: 100%;
14
-
15
- &-input {
16
- background-color: transparent;
17
- opacity: 1;
18
- }
19
25
 
20
26
  &-disabled {
21
27
  .control-disabled();
@@ -29,23 +35,34 @@
29
35
  background-color: transparent;
30
36
  border-color: transparent;
31
37
  }
32
- }
33
- }
34
- .ivu-input-number-handler {
35
- &-wrap {
36
- // opacity: 1;
37
- border-left: none;
38
- }
39
- &-down {
40
- border: none;
41
- }
42
- &:hover {
43
- background-color: @hoverBg;
44
- .ivu-input-number-handler-down-inner, .ivu-input-number-handler-up-inner {
38
+ .ivu-input-number-input {
39
+ opacity: 1;
40
+ background: @inputBg-disabled;
45
41
  color: @textColor;
42
+ &::-webkit-input-placeholder {
43
+ .control-disPlaceholder();
44
+ }
46
45
  }
47
46
  }
48
- &-down-inner, &-up-inner {
49
- color: @contentColor;
47
+
48
+ &-handler {
49
+ &-wrap {
50
+ // opacity: 1;
51
+ border-left: none;
52
+ }
53
+ &-down {
54
+ border: none;
55
+ }
56
+ &:hover {
57
+ background-color: @hoverBg;
58
+
59
+ .ivu-input-number-handler-down-inner,
60
+ .ivu-input-number-handler-up-inner {
61
+ color: @textColor;
62
+ }
63
+ }
64
+ &-down-inner, &-up-inner {
65
+ color: @contentColor;
66
+ }
50
67
  }
51
68
  }
@@ -172,3 +172,14 @@
172
172
  -webkit-text-fill-color: @textColor-disabled;
173
173
  }
174
174
  }
175
+
176
+ .ivu-select-disabled .ivu-select-selection {
177
+ .control-disabled();
178
+ &:hover {
179
+ border-color: transparent;
180
+ }
181
+ }
182
+ .ivu-select-input[disabled] {
183
+ color: @textColor;
184
+ -webkit-text-fill-color: @textColor-disabled;
185
+ }
@@ -1,21 +1,32 @@
1
1
  .BriLabels {
2
- display: flex;
3
- width: 100%;
2
+ .control-wrap();
4
3
 
5
4
  &-dropdown {
6
5
  width: 100%;
7
6
 
8
7
  &-show {
8
+ .control-edit();
9
+ height: 32px;
9
10
  display: flex;
10
11
  justify-content: space-between;
11
- cursor: pointer;
12
- border-radius: @borderRadius;
13
- border: 1px solid @borderColor;
14
- padding-left: 5px;
12
+ padding-left: 4px;
13
+
15
14
 
16
15
  &-list {
17
16
  display: flex;
18
17
  align-items: center;
18
+ width: calc(100% - 14px);
19
+
20
+ &-show {
21
+ width: 100%;
22
+ white-space: nowrap;
23
+ .bri-scrollbar3();
24
+ overflow-y: hidden;
25
+ }
26
+
27
+ &-placeholder {
28
+ .control-placeholder();
29
+ }
19
30
  }
20
31
 
21
32
  &-active {
@@ -23,6 +34,17 @@
23
34
  box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
24
35
  }
25
36
 
37
+ &-disabled {
38
+ border: 1px solid @border-disabled;
39
+ border-radius: 4px;
40
+ background: @borderColor;
41
+ cursor: not-allowed;
42
+ color: @textColor-disabled !important;
43
+ .BriLabels-dropdown-show-list-placeholder {
44
+ .control-disPlaceholder();
45
+ }
46
+ }
47
+
26
48
  &-arrow {
27
49
  display: flex;
28
50
  align-items: center;
@@ -80,7 +102,7 @@
80
102
  }
81
103
 
82
104
  &-add {
83
- width: 300px;
105
+ width: 100%;
84
106
  margin-bottom: 8px;
85
107
  }
86
108
  }
@@ -115,7 +137,6 @@
115
137
  &-item {
116
138
  .unit-show();
117
139
  .dsh-ellipsis();
118
- display: inline-flex;
119
140
  max-width: 100%;
120
141
  height: fit-content;
121
142
  padding: 0 8px;
@@ -127,9 +148,5 @@
127
148
  border-radius: @borderRadius;
128
149
  margin-right: 8px;
129
150
  }
130
-
131
- &-nodata {
132
- color: @textColor;
133
- }
134
151
  }
135
152
  }
@@ -0,0 +1,3 @@
1
+ .DshBack {
2
+ width: 100%;
3
+ }
@@ -0,0 +1,3 @@
1
+ .DshUndeveloped {
2
+ width: 100%;
3
+ }
@@ -1,5 +1,4 @@
1
1
  .DshAdvSearchForm {
2
-
3
2
  #title {
4
3
  font-weight: 400;
5
4
  color: #999999;
@@ -22,7 +22,7 @@
22
22
  width: 100%;
23
23
  text-align: center;
24
24
  position: absolute;
25
- bottom: -10px;
25
+ bottom: -24px;
26
26
  left: 0px;
27
27
 
28
28
  &-icon {
@@ -0,0 +1,13 @@
1
+ .DshForm {
2
+ &-item-FormItem {
3
+ margin-bottom: 0px!important;
4
+ }
5
+
6
+ .ivu-form-item-content {
7
+ line-height: normal;
8
+ }
9
+ .ivu-form-item-error-tip {
10
+ top: 90%;
11
+ left: 15px;
12
+ }
13
+ }
@@ -1,3 +1,25 @@
1
+ // list
2
+ @import "./list/DshBox/DshBox.less";
3
+ @import "./list/DshBox/DshTable.less";
4
+ @import "./list/DshBox/DshCrossTable.less";
5
+ @import "./list/DshBox/DshCard.less";
6
+ @import "./list/DshBox/DshPanel.less";
7
+ @import "./list/DshBox/DshSingleData.less";
8
+ @import "./list/DshBox/DshList.less";
9
+ @import "./list/DshPage.less";
10
+ @import "./list/BriTable.less";
11
+ @import "./list/BriFlatTable.less";
12
+ @import "./list/DshCascaderTable.less";
13
+ @import "./list/BriTree.less";
14
+
15
+ // form
16
+ @import "./form/DshForm.less";
17
+ @import "./form/DshAdvSearchForm.less";
18
+ @import "./form/DshDefaultSearch.less";
19
+ // unit
20
+ @import "./unit/DshFormItem.less";
21
+ @import "./unit/DshUnit.less";
22
+
1
23
  // controls
2
24
  @import "./controls/base/DshInput.less";
3
25
  @import "./controls/base/BriInputs.less";
@@ -8,9 +30,8 @@
8
30
  @import "./controls/base/DshCheckbox.less";
9
31
  @import "./controls/base/DshDate.less";
10
32
  @import "./controls/base/DshDaterange.less";
11
- @import "./controls/base/DshCascader.less";
12
- @import "./controls/base/InfoCascader.less";
13
- @import "./controls/base/BriUpload.less";
33
+ @import "./controls/base/DshCascader/index.less";
34
+ @import "./controls/base/BriUpload/index.less";
14
35
  @import "./controls/base/DshCoordinates.less";
15
36
  @import "./controls/base/DshEditor.less";
16
37
  @import "./controls/base/DshDivider.less";
@@ -20,47 +41,33 @@
20
41
  @import "./controls/senior/BriLabels.less";
21
42
  @import "./controls/senior/DshPackage.less";
22
43
 
23
- @import "./controls/controlShow.less";
24
-
25
- // form
26
- @import "./form/DshAdvSearchForm.less";
27
- @import "./form/DshDefaultSearch.less";
28
-
29
- // list
30
- @import "./list/DshBox/DshBox.less";
31
- @import "./list/DshBox/DshTable.less";
32
- @import "./list/DshBox/DshCrossTable.less";
33
- @import "./list/DshBox/DshCard.less";
34
- @import "./list/DshBox/DshPanel.less";
35
- @import "./list/DshBox/DshSingleData.less";
36
- @import "./list/DshBox/DshList.less";
37
-
38
- @import "./list/BriTable.less";
39
- @import "./list/BriFlatTable.less";
40
- @import "./list/DshCascaderTable.less";
41
- @import "./list/ZTree.less";
44
+ @import "./controls/special/DshBack.less";
45
+ @import "./controls/special/DshUndeveloped.less";
42
46
 
43
47
  // other
48
+ @import "./other/BriCode.less";
49
+ @import "./other/BriCollapseTree.less";
50
+ @import "./other/BriGantt.less";
51
+ @import "./other/BriIframe.less";
52
+ @import "./other/BriLoading.less";
53
+ @import "./other/DshAvatar.less";
54
+ @import "./other/DshBtnModal.less";
55
+ @import "./other/DshColorPanel.less";
44
56
  @import "./other/DshEditPanel.less";
45
57
  @import "./other/DshMenu.less";
46
58
  @import "./other/DshMenuNav.less";
47
- @import "./other/ZCode.less";
48
- @import "./other/ZCollapseTree.less";
49
- @import "./other/ZGantt.less";
50
- @import "./other/ZLoading.less";
51
- @import "./other/BriTransfer.less";
52
59
 
53
60
  // small
61
+ @import "./small/BriButton.less";
62
+ @import "./small/BriDrawer.less";
63
+ @import "./small/BriTooltip.less";
54
64
  @import "./small/DshButtons.less";
55
- @import "./small/Ctooltip.less";
65
+ @import "./small/DshCrumbs.less";
66
+ @import "./small/DshCrumbItem.less";
56
67
  @import "./small/DshDropdown.less";
57
- @import "./small/DshPage.less";
68
+ @import "./small/DshIcons.less";
69
+ @import "./small/DshModal.less";
70
+ @import "./small/DshSteps.less";
58
71
  @import "./small/DshTabs.less";
72
+ @import "./small/DshTags.less";
59
73
  @import "./small/DshTitle.less";
60
- @import "./small/DshSteps.less";
61
- @import "./small/BriButton.less";
62
- @import "./small/BriDrawer.less";
63
- @import "./small/DshModal.less";
64
-
65
- // unit
66
- @import "./unit/DshFormItem.less";
@@ -48,9 +48,9 @@
48
48
  .dsh-flex-row-center-center();
49
49
  }
50
50
 
51
- &-loading {
52
- color: @themeColor;
53
- }
51
+ &-ellipsis {
52
+ max-width: calc(100% - 20px);
53
+ }
54
54
 
55
55
  td {
56
56
  white-space: normal !important;
@@ -75,7 +75,6 @@
75
75
  td.ve-table-last-left-fixed-column {
76
76
  box-shadow: 4px 0 7px -2px rgba(0, 0, 0, 0.1);
77
77
  }
78
-
79
78
  }
80
79
 
81
80
  .ve-table .ve-table-container.ve-table-container-left-scrolling .ve-table-last-left-fixed-column {
@@ -90,8 +89,9 @@
90
89
 
91
90
  // 排序
92
91
  .ve-table-sort {
93
- float: right;
94
- margin-top: -4px;
92
+ position: absolute!important;
93
+ top: 7px;
94
+ right: 20px;
95
95
 
96
96
  .icon-vet-sort-top-arrow:before {
97
97
  content: "\e6347";
@@ -104,9 +104,9 @@
104
104
 
105
105
  // 筛选
106
106
  .ve-dropdown {
107
- float: right;
108
- margin-right: 24px;
109
- margin-top: -4px;
107
+ position: absolute;
108
+ top: 9px;
109
+ right: 42px;
110
110
  }
111
111
 
112
112
  .ve-table .ve-table-container .ve-table-content-wrapper table.ve-table-content thead.ve-table-header .ve-table-header-tr .ve-table-header-th .ve-table-filter .ve-table-filter-icon {
@@ -1,4 +1,4 @@
1
- .ZTree {
1
+ .BriTree {
2
2
  max-width: 1200px;
3
3
  min-width: 720px;
4
4
  height: 100%;
@@ -40,13 +40,17 @@
40
40
  margin-top: 5px;
41
41
  }
42
42
  }
43
- &-dropdown-menu.DshColorPanel-list {
44
- width: 242px!important;
45
- }
46
43
 
47
- &-create-content {
48
- .textRight {
49
- text-align: right;
44
+ &-modal {
45
+ &-content {
46
+ &-btns {
47
+ .dsh-padding20();
48
+ text-align: right;
49
+ }
50
50
  }
51
51
  }
52
+
53
+ &-dropdown-menu.DshColorPanel-list {
54
+ width: 242px!important;
55
+ }
52
56
  }
@@ -1,4 +1,15 @@
1
1
  .DshTable {
2
2
  width: 100%;
3
3
  height: 100%;
4
+ .table-operation-btn {
5
+ margin-left: 16px;
6
+ padding: 0px;
7
+ &:first-of-type {
8
+ margin: 0px;
9
+ }
10
+ }
11
+ .DshButtons-dropdown-more {
12
+ padding: 0px;
13
+ margin-left: 16px;
14
+ }
4
15
  }
@@ -0,0 +1,5 @@
1
+
2
+ .BriCode {
3
+ width: 100%;
4
+ height: 100%;
5
+ }
@@ -1,4 +1,4 @@
1
- .ZCollapseTree {
1
+ .BriCollapseTree {
2
2
  &-listItem {
3
3
  display: flex;
4
4
  justify-content: space-between;
@@ -29,7 +29,7 @@
29
29
  }
30
30
  }
31
31
 
32
- .ZCollapseTree {
32
+ .BriCollapseTree {
33
33
  &-collapse {
34
34
  border: none;
35
35
  .ivu-collapse-item>.ivu-collapse-header {
@@ -0,0 +1,16 @@
1
+ .BriIframe {
2
+ display: flex;
3
+ width: 100%;
4
+ height: 100%;
5
+ position: relative;
6
+
7
+ &-iframe {
8
+ flex: 1;
9
+ overflow: auto;
10
+ }
11
+
12
+ &-nodata {
13
+ width: 100%;
14
+ height: 100%;
15
+ }
16
+ }
@@ -1,4 +1,4 @@
1
- .ZLoading {
1
+ .BriLoading {
2
2
  &-fix {
3
3
  position: absolute;
4
4
  top: 0;
@@ -7,7 +7,7 @@
7
7
  width: 100%;
8
8
  height: 100%;
9
9
 
10
- .ZLoading-main {
10
+ .BriLoading-main {
11
11
  position: absolute;
12
12
  top: 50%;
13
13
  left: 50%;
@@ -24,7 +24,7 @@
24
24
  to { transform: rotate(360deg); }
25
25
  }
26
26
 
27
- .ZLoading-main {
27
+ .BriLoading-main {
28
28
  width: 100%;
29
29
  height: 100%;
30
30
  .dsh-flex-col();
@@ -0,0 +1,64 @@
1
+ .DshAvatar {
2
+ position: relative;
3
+
4
+ span {
5
+ display: inline-block;
6
+ margin-left: 20px;
7
+ line-height: 22px;
8
+ }
9
+
10
+ &-img {
11
+ width: 22px;
12
+ height: 22px;
13
+ padding: 1px;
14
+ display: inline-block;
15
+ line-height: 20px;
16
+ background: #fff;
17
+ border-radius: 50%;
18
+ img {
19
+ width: 20px;
20
+ height: 20px;
21
+ display: inline-block;
22
+ border-radius: 50%;
23
+ }
24
+ &:nth-child(1) {
25
+ position: absolute;
26
+ left: 0px;
27
+ top: 50%;
28
+ margin-top: -10px;
29
+ }
30
+ &:nth-child(2) {
31
+ position: absolute;
32
+ left: 12px;
33
+ top: 50%;
34
+ margin-top: -10px;
35
+ }
36
+ &:nth-child(3) {
37
+ position: absolute;
38
+ left: 24px;
39
+ top: 50%;
40
+ margin-top: -10px;
41
+ }
42
+ &:nth-child(4) {
43
+ position: absolute;
44
+ left: 36px;
45
+ top: 50%;
46
+ margin-top: -10px;
47
+ }
48
+ }
49
+
50
+ &-round {
51
+ display: inline-block;
52
+ margin-right: 8px;
53
+ }
54
+
55
+ &-box {
56
+ position: relative;
57
+ img {
58
+ width: 20px;
59
+ height: 20px;
60
+ display: inline-block;
61
+ border-radius: 50%;
62
+ }
63
+ }
64
+ }
@@ -0,0 +1,3 @@
1
+ .DshBtnModal {
2
+
3
+ }