bri-components 1.1.6 → 1.2.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/lib/0.bri-components.min.js +1 -1
- package/lib/1.bri-components.min.js +1 -1
- package/lib/2.bri-components.min.js +1 -1
- package/lib/3.bri-components.min.js +1 -1
- package/lib/4.bri-components.min.js +1 -1
- package/lib/5.bri-components.min.js +1 -1
- package/lib/6.bri-components.min.js +1 -1
- package/lib/7.bri-components.min.js +1 -1
- package/lib/8.bri-components.min.js +1 -1
- package/lib/9.bri-components.min.js +1 -1
- package/lib/bri-components.min.js +6 -6
- package/lib/styles/bri-components.css +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/abolish/DshFileShow.less +61 -0
- package/src/{components/small → abolish}/DshFileShow.vue +30 -105
- package/src/abolish/DshFlatTable.vue +1 -1
- package/src/components/.DS_Store +0 -0
- package/src/components/controls/.DS_Store +0 -0
- package/src/components/controls/base/BriUpload/{index.vue → BriUpload.vue} +4 -3
- package/src/components/controls/base/BriUpload/{upload-list.vue → uploadList.vue} +17 -13
- package/src/components/controls/base/BriUpload/uploadMixin.js +1 -5
- package/src/components/controls/base/DshCascader/DshCascader.vue +100 -100
- package/src/components/controls/base/DshCascader/InfoCascader.vue +3 -4
- package/src/components/controls/base/DshCheckbox.vue +11 -11
- package/src/components/controls/base/DshCoordinates.vue +2 -2
- package/src/components/controls/base/DshDate.vue +21 -10
- package/src/components/controls/base/DshEditor.vue +33 -48
- package/src/components/controls/base/DshInput.vue +21 -19
- package/src/components/controls/base/DshNumber/DshNumber.vue +23 -22
- package/src/components/controls/base/DshSelect.vue +3 -3
- package/src/components/controls/base/DshSwitch.vue +2 -2
- package/src/components/controls/controlMap.js +5 -1
- package/src/components/controls/controlMixin.js +16 -17
- package/src/components/controls/senior/.DS_Store +0 -0
- package/src/components/controls/senior/BriLabels.vue +200 -171
- package/src/components/controls/senior/selectDepartments.vue +380 -0
- package/src/components/controls/senior/selectUsers/DepartmentMenu.vue +191 -0
- package/src/components/controls/senior/selectUsers/selectUsers.vue +482 -0
- package/src/components/controls/special/DshUndeveloped.vue +0 -6
- package/src/components/form/DshForm.vue +4 -17
- package/src/components/list/BriCard.vue +52 -0
- package/src/components/list/BriTable.vue +1 -1
- package/src/components/list/{ZTree.vue → BriTree.vue} +9 -8
- package/src/components/list/BriTreeItem.vue +110 -0
- package/src/components/list/DshBox/DshCard.vue +4 -4
- package/src/components/list/DshBox/DshCrossTable.vue +4 -4
- package/src/components/list/DshBox/DshList.vue +2 -2
- package/src/components/list/DshBox/DshPanel.vue +5 -5
- package/src/components/list/DshBox/DshTable.vue +21 -80
- package/src/components/list/DshCascaderTable.vue +2 -2
- package/src/components/other/{ZCode.vue → BriCode.vue} +2 -9
- package/src/components/other/{ZCollapseTree.vue → BriCollapseTree.vue} +37 -16
- package/src/components/other/{ZIframe.vue → BriIframe.vue} +7 -23
- package/src/components/other/{ZLoading.vue → BriLoading.vue} +25 -11
- package/src/components/other/BriSvg.vue +2 -2
- package/src/components/other/DshAvatar.vue +21 -69
- package/src/components/other/DshColorPanel.vue +0 -43
- package/src/components/small/{Ctooltip.vue → BriTooltip.vue} +2 -2
- package/src/components/small/DshButtons.vue +2 -2
- package/src/components/small/DshCrumbs.vue +1 -0
- package/src/components/small/DshCrumbsItem.vue +5 -3
- package/src/components/small/DshIcons.vue +0 -14
- package/src/components/small/DshTags.vue +8 -3
- package/src/components/unit/DshFormItem.vue +4 -4
- package/src/components/unit/DshUnit.vue +0 -8
- package/src/index.js +99 -106
- package/src/styles/.DS_Store +0 -0
- package/src/styles/common/control.less +76 -68
- package/src/styles/components/.DS_Store +0 -0
- package/src/styles/components/controls/base/BriUpload/BriUpload.less +167 -0
- package/src/styles/components/controls/base/BriUpload/BriUploadImage.less +81 -0
- package/src/styles/components/controls/base/BriUpload/index.less +3 -0
- package/src/styles/components/controls/base/BriUpload/uploadList.less +164 -0
- package/src/styles/components/controls/base/DshCascader/DshCascader.less +71 -0
- package/src/styles/components/controls/base/DshCascader/index.less +2 -0
- package/src/styles/components/controls/base/DshCheckbox.less +68 -71
- package/src/styles/components/controls/base/DshDate.less +12 -0
- package/src/styles/components/controls/base/DshEditor.less +27 -48
- package/src/styles/components/controls/base/DshInput.less +6 -2
- package/src/styles/components/controls/base/DshNumber.less +44 -27
- package/src/styles/components/controls/base/DshSelect.less +12 -1
- package/src/styles/components/controls/senior/BriLabels.less +34 -103
- package/src/styles/components/controls/senior/cascaderTable.less +1 -1
- package/src/styles/components/controls/senior/flatTable.less +1 -1
- package/src/styles/components/controls/senior/selectDepartments.less +106 -0
- package/src/styles/components/controls/senior/selectUsers/DepartmentMenu.less +37 -0
- package/src/styles/components/controls/senior/selectUsers/index.less +2 -0
- package/src/styles/components/controls/senior/selectUsers/selectUsers.less +167 -0
- package/src/styles/components/controls/special/DshBack.less +3 -0
- package/src/styles/components/controls/special/DshUndeveloped.less +3 -0
- package/src/styles/components/form/DshAdvSearchForm.less +0 -1
- package/src/styles/components/form/DshDefaultSearch.less +2 -3
- package/src/styles/components/form/DshForm.less +13 -0
- package/src/styles/components/index.less +47 -36
- package/src/styles/components/list/BriCard.less +50 -0
- package/src/styles/components/list/BriTable.less +9 -9
- package/src/styles/components/list/{ZTree.less → BriTree.less} +11 -7
- package/src/styles/components/list/BriTreeItem.less +50 -0
- package/src/styles/components/list/DshBox/DshTable.less +11 -0
- package/src/styles/components/other/BriCode.less +5 -0
- package/src/styles/components/other/{ZCollapseTree.less → BriCollapseTree.less} +2 -2
- package/src/styles/components/other/BriIframe.less +16 -0
- package/src/styles/components/other/{ZLoading.less → BriLoading.less} +3 -3
- package/src/styles/components/other/DshAvatar.less +64 -0
- package/src/styles/components/other/DshBtnModal.less +3 -0
- package/src/styles/components/other/DshColorPanel.less +40 -0
- package/src/styles/components/other/DshEditPanel.less +2 -2
- package/src/styles/components/small/BriButton.less +3 -2
- package/src/styles/components/small/{Ctooltip.less → BriTooltip.less} +2 -1
- package/src/styles/components/small/DshCrumbs.less +0 -0
- package/src/styles/components/small/DshDropdown.less +5 -3
- package/src/styles/components/small/DshIcons.less +7 -0
- package/src/styles/components/small/DshTags.less +17 -0
- package/src/styles/components/unit/DshFormItem.less +4 -5
- package/src/styles/components/unit/DshUnit.less +5 -0
- package/src/utils/table.js +8 -0
- package/src/components/controls/controlShow.vue +0 -44
- package/src/components/other/YNoPermission.vue +0 -45
- package/src/components/small/BriTree.vue +0 -42
- package/src/styles/components/controls/base/BriUpload.less +0 -436
- package/src/styles/components/controls/base/DshCascader.less +0 -110
- package/src/styles/components/controls/controlShow.less +0 -12
- package/src/styles/components/other/ZCode.less +0 -1
- /package/src/{styles/components/other → abolish}/BriTransfer.less +0 -0
- /package/src/{components/other → abolish}/BriTransfer.vue +0 -0
- /package/src/{styles/components/small → abolish}/BriTree.less +0 -0
- /package/src/components/{small → list}/DshPage.vue +0 -0
- /package/src/components/other/{ZGantt.vue → BriGantt.vue} +0 -0
- /package/src/components/other/{menu/DshMenu.vue → DshMenu.vue} +0 -0
- /package/src/components/other/{menu/DshMenuNav.vue → DshMenuNav.vue} +0 -0
- /package/src/styles/components/controls/base/{InfoCascader.less → DshCascader/InfoCascader.less} +0 -0
- /package/src/styles/components/{small → list}/DshPage.less +0 -0
- /package/src/styles/components/other/{ZGantt.less → BriGantt.less} +0 -0
- /package/src/{components/controls/base/BriUpload/upload-listItem.vue → styles/components/small/DshCrumbItem.less} +0 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.DepartmentMenu {
|
|
2
|
+
|
|
3
|
+
font-size: 14px;
|
|
4
|
+
|
|
5
|
+
&-item {
|
|
6
|
+
width: 100%;
|
|
7
|
+
line-height: 38px;
|
|
8
|
+
text-align: left;
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
|
|
12
|
+
.ivu-icon {
|
|
13
|
+
color: @textColor;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&-item-name {
|
|
18
|
+
display: flex;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
align-items: flex-start;
|
|
21
|
+
padding: 8px 5px 8px 20px;
|
|
22
|
+
font-weight: 400;
|
|
23
|
+
color: @textColor;
|
|
24
|
+
line-height: 24px;
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
background-color: rgba(36, 36, 63, 0.03);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&-select {
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
color: @themeColor;
|
|
33
|
+
background: rgba(235, 240, 232, 1);
|
|
34
|
+
position: relative;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
.selectUsers {
|
|
2
|
+
width: 100%;
|
|
3
|
+
|
|
4
|
+
&-edit {
|
|
5
|
+
#bri-control-wrap();
|
|
6
|
+
}
|
|
7
|
+
&-show {
|
|
8
|
+
#bri-control-wrap();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// 弹框部分
|
|
12
|
+
&-modal {
|
|
13
|
+
&-wrap {
|
|
14
|
+
display: flex;
|
|
15
|
+
padding: 20px;
|
|
16
|
+
height: 550px;
|
|
17
|
+
|
|
18
|
+
&-left {
|
|
19
|
+
width: 520px;
|
|
20
|
+
overflow-y: auto;
|
|
21
|
+
background: @white;
|
|
22
|
+
border: 1px solid #E5E5E5;
|
|
23
|
+
|
|
24
|
+
.search {
|
|
25
|
+
padding: 10px 20px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.content {
|
|
29
|
+
display: flex;
|
|
30
|
+
height: calc(100% - 52px);
|
|
31
|
+
border-top: 1px solid #E5E5E5;
|
|
32
|
+
|
|
33
|
+
&-menu {
|
|
34
|
+
flex: 3;
|
|
35
|
+
height: 100%;
|
|
36
|
+
overflow: auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&-users {
|
|
40
|
+
flex: 2;
|
|
41
|
+
position: relative;
|
|
42
|
+
|
|
43
|
+
.ivu-checkbox-checked .ivu-checkbox-inner {
|
|
44
|
+
border-color: @themeColor;
|
|
45
|
+
background-color: @themeColor;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-list {
|
|
49
|
+
border-left: 1px solid #E5E5E5;
|
|
50
|
+
height: 100%;
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
&-checkAll {
|
|
56
|
+
height: 40px;
|
|
57
|
+
line-height: 40px;
|
|
58
|
+
border-bottom: 1px solid #E5E5E5;
|
|
59
|
+
padding-left: 15px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&-selects {
|
|
63
|
+
flex: 1;
|
|
64
|
+
overflow: auto;
|
|
65
|
+
padding: 15px;
|
|
66
|
+
|
|
67
|
+
&-item {
|
|
68
|
+
margin-bottom: 5px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&-nodata {
|
|
74
|
+
position: absolute;
|
|
75
|
+
top: 50%;
|
|
76
|
+
width: 100%;
|
|
77
|
+
text-align: center;
|
|
78
|
+
transform: translateY(-50%);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&-center {
|
|
86
|
+
width: 100px;
|
|
87
|
+
display: flex;
|
|
88
|
+
justify-content: center;
|
|
89
|
+
align-items: center;
|
|
90
|
+
|
|
91
|
+
.icon {
|
|
92
|
+
width: 24px;
|
|
93
|
+
height: 24px;
|
|
94
|
+
line-height: 24px;
|
|
95
|
+
font-size: 18px;
|
|
96
|
+
background-color: @themeColor;
|
|
97
|
+
border-radius: 50%;
|
|
98
|
+
color: #fff;
|
|
99
|
+
text-align: center;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&-right {
|
|
104
|
+
flex: 1;
|
|
105
|
+
width: 0px;
|
|
106
|
+
height: 100%;
|
|
107
|
+
padding: 20px;
|
|
108
|
+
margin-left: 10px;
|
|
109
|
+
border: 1px solid #E5E5E5;
|
|
110
|
+
background: @white;
|
|
111
|
+
overflow: auto;
|
|
112
|
+
display: flex;
|
|
113
|
+
flex-direction: column;
|
|
114
|
+
|
|
115
|
+
.list {
|
|
116
|
+
display: flex;
|
|
117
|
+
flex-wrap: wrap;
|
|
118
|
+
align-items: center;
|
|
119
|
+
|
|
120
|
+
&-item {
|
|
121
|
+
max-width: 150px;
|
|
122
|
+
height: 24px;
|
|
123
|
+
padding: 2px 6px 2px 10px;
|
|
124
|
+
margin: 3px 5px;
|
|
125
|
+
border-radius: 20px;
|
|
126
|
+
background-color: @themeColor;
|
|
127
|
+
color: #ffffff;
|
|
128
|
+
font-size: 12px;
|
|
129
|
+
display: flex;
|
|
130
|
+
align-items: center;
|
|
131
|
+
|
|
132
|
+
&-name {
|
|
133
|
+
.dsh-ellipsis();
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&-delete {
|
|
137
|
+
padding: 3px;
|
|
138
|
+
margin-left: 5px;
|
|
139
|
+
font-size: 14px;
|
|
140
|
+
cursor: pointer;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
&-footer {
|
|
147
|
+
padding-bottom: 10px;
|
|
148
|
+
|
|
149
|
+
.DshButtons {
|
|
150
|
+
text-align: right;
|
|
151
|
+
padding-right: 24px;
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
.ivu-btn {
|
|
155
|
+
width: 70px;
|
|
156
|
+
height: 32px;
|
|
157
|
+
margin-right: 13px;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.ivu-modal {
|
|
164
|
+
width: 900px !important;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
width: 100%;
|
|
23
23
|
text-align: center;
|
|
24
24
|
position: absolute;
|
|
25
|
-
bottom: -
|
|
25
|
+
bottom: -24px;
|
|
26
26
|
left: 0px;
|
|
27
27
|
|
|
28
28
|
&-icon {
|
|
@@ -76,8 +76,7 @@
|
|
|
76
76
|
text-align: left;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
.control-edit {
|
|
79
|
+
.bri-control-edit {
|
|
80
80
|
border-radius: 0px;
|
|
81
81
|
}
|
|
82
|
-
|
|
83
82
|
}
|
|
@@ -1,3 +1,27 @@
|
|
|
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/BriCard.less";
|
|
10
|
+
@import "./list/BriFlatTable.less";
|
|
11
|
+
@import "./list/BriTable.less";
|
|
12
|
+
@import "./list/BriTree.less";
|
|
13
|
+
@import "./list/BriTreeItem.less";
|
|
14
|
+
@import "./list/DshCascaderTable.less";
|
|
15
|
+
@import "./list/DshPage.less";
|
|
16
|
+
|
|
17
|
+
// form
|
|
18
|
+
@import "./form/DshForm.less";
|
|
19
|
+
@import "./form/DshAdvSearchForm.less";
|
|
20
|
+
@import "./form/DshDefaultSearch.less";
|
|
21
|
+
// unit
|
|
22
|
+
@import "./unit/DshFormItem.less";
|
|
23
|
+
@import "./unit/DshUnit.less";
|
|
24
|
+
|
|
1
25
|
// controls
|
|
2
26
|
@import "./controls/base/DshInput.less";
|
|
3
27
|
@import "./controls/base/BriInputs.less";
|
|
@@ -8,59 +32,46 @@
|
|
|
8
32
|
@import "./controls/base/DshCheckbox.less";
|
|
9
33
|
@import "./controls/base/DshDate.less";
|
|
10
34
|
@import "./controls/base/DshDaterange.less";
|
|
11
|
-
@import "./controls/base/DshCascader.less";
|
|
12
|
-
@import "./controls/base/
|
|
13
|
-
@import "./controls/base/BriUpload.less";
|
|
35
|
+
@import "./controls/base/DshCascader/index.less";
|
|
36
|
+
@import "./controls/base/BriUpload/index.less";
|
|
14
37
|
@import "./controls/base/DshCoordinates.less";
|
|
15
38
|
@import "./controls/base/DshEditor.less";
|
|
16
39
|
@import "./controls/base/DshDivider.less";
|
|
17
40
|
|
|
41
|
+
@import "./controls/senior/selectUsers/index.less";
|
|
42
|
+
@import "./controls/senior/selectDepartments.less";
|
|
18
43
|
@import "./controls/senior/flatTable.less";
|
|
19
44
|
@import "./controls/senior/cascaderTable.less";
|
|
20
45
|
@import "./controls/senior/BriLabels.less";
|
|
21
46
|
@import "./controls/senior/DshPackage.less";
|
|
22
47
|
|
|
23
|
-
@import "./controls/
|
|
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";
|
|
48
|
+
@import "./controls/special/DshBack.less";
|
|
49
|
+
@import "./controls/special/DshUndeveloped.less";
|
|
42
50
|
|
|
43
51
|
// other
|
|
52
|
+
@import "./other/BriCode.less";
|
|
53
|
+
@import "./other/BriCollapseTree.less";
|
|
54
|
+
@import "./other/BriGantt.less";
|
|
55
|
+
@import "./other/BriIframe.less";
|
|
56
|
+
@import "./other/BriLoading.less";
|
|
57
|
+
@import "./other/DshAvatar.less";
|
|
58
|
+
@import "./other/DshBtnModal.less";
|
|
59
|
+
@import "./other/DshColorPanel.less";
|
|
44
60
|
@import "./other/DshEditPanel.less";
|
|
45
61
|
@import "./other/DshMenu.less";
|
|
46
62
|
@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
63
|
|
|
53
64
|
// small
|
|
65
|
+
@import "./small/BriButton.less";
|
|
66
|
+
@import "./small/BriDrawer.less";
|
|
67
|
+
@import "./small/BriTooltip.less";
|
|
54
68
|
@import "./small/DshButtons.less";
|
|
55
|
-
@import "./small/
|
|
69
|
+
@import "./small/DshCrumbs.less";
|
|
70
|
+
@import "./small/DshCrumbItem.less";
|
|
56
71
|
@import "./small/DshDropdown.less";
|
|
57
|
-
@import "./small/
|
|
72
|
+
@import "./small/DshIcons.less";
|
|
73
|
+
@import "./small/DshModal.less";
|
|
74
|
+
@import "./small/DshSteps.less";
|
|
58
75
|
@import "./small/DshTabs.less";
|
|
76
|
+
@import "./small/DshTags.less";
|
|
59
77
|
@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";
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.BriCard {
|
|
2
|
+
.item {
|
|
3
|
+
height: 50px;
|
|
4
|
+
margin-bottom: 10px;
|
|
5
|
+
float: left;
|
|
6
|
+
width: 33.3%;
|
|
7
|
+
padding: 0 10px;
|
|
8
|
+
min-width: 160px;
|
|
9
|
+
|
|
10
|
+
&-normal {
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
border: 1px solid #eaeaea;
|
|
14
|
+
position: relative;
|
|
15
|
+
border-radius: 5px;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
|
|
18
|
+
.label {
|
|
19
|
+
.dsh-ellipsis();
|
|
20
|
+
display: block;
|
|
21
|
+
width: 160px;
|
|
22
|
+
height: 100%;
|
|
23
|
+
position: absolute;
|
|
24
|
+
left: 50%;
|
|
25
|
+
margin-left: -80px;
|
|
26
|
+
line-height: 50px;
|
|
27
|
+
text-align: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.avatar {
|
|
31
|
+
position: absolute;
|
|
32
|
+
width: 40px;
|
|
33
|
+
height: 40px;
|
|
34
|
+
display: block;
|
|
35
|
+
border-radius: 50%;
|
|
36
|
+
left: 10px;
|
|
37
|
+
top: 5px;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&-active {
|
|
42
|
+
background-color: @themeColor;
|
|
43
|
+
color: #fff;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&-nodata {
|
|
48
|
+
#dsh-nodata();
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
.dsh-flex-row-center-center();
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
&-
|
|
52
|
-
|
|
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
|
-
|
|
94
|
-
|
|
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
|
-
|
|
108
|
-
|
|
109
|
-
|
|
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
|
-
.
|
|
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
|
-
&-
|
|
48
|
-
|
|
49
|
-
|
|
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
|
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.BriTreeItem {
|
|
2
|
+
padding-left: 16px;
|
|
3
|
+
|
|
4
|
+
&-content {
|
|
5
|
+
line-height: 36px;
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
display: flex;
|
|
8
|
+
|
|
9
|
+
&:hover {
|
|
10
|
+
background-color: @btn-hover;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&-expand {
|
|
14
|
+
width: 28px;
|
|
15
|
+
text-align: center;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&-select {
|
|
19
|
+
width: 100%;
|
|
20
|
+
color: rgba(36, 36, 63, 0.9);
|
|
21
|
+
|
|
22
|
+
.ivu-checkbox-inner {
|
|
23
|
+
border-color: rgba(36, 36, 63, 0.3)
|
|
24
|
+
}
|
|
25
|
+
.ivu-checkbox {
|
|
26
|
+
margin-right: 2px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&-radio {
|
|
30
|
+
.ivu-checkbox-inner {
|
|
31
|
+
border-radius: 50%;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&-text {
|
|
37
|
+
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.default-enter,
|
|
42
|
+
.default-leave-to {
|
|
43
|
+
opacity: 0;
|
|
44
|
+
max-height: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&-children {
|
|
48
|
+
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
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
|
-
.
|
|
32
|
+
.BriCollapseTree {
|
|
33
33
|
&-collapse {
|
|
34
34
|
border: none;
|
|
35
35
|
.ivu-collapse-item>.ivu-collapse-header {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
+
}
|