bri-components 1.0.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.
- package/README.md +30 -0
- package/lib/.DS_Store +0 -0
- package/lib/0.bri-components.min.js +2 -0
- package/lib/0.bri-components.min.js.map +1 -0
- package/lib/1.bri-components.min.js +2 -0
- package/lib/1.bri-components.min.js.map +1 -0
- package/lib/2.bri-components.min.js +2 -0
- package/lib/2.bri-components.min.js.map +1 -0
- package/lib/3.bri-components.min.js +2 -0
- package/lib/3.bri-components.min.js.gz +0 -0
- package/lib/3.bri-components.min.js.map +1 -0
- package/lib/4.bri-components.min.js +2 -0
- package/lib/4.bri-components.min.js.gz +0 -0
- package/lib/4.bri-components.min.js.map +1 -0
- package/lib/5.bri-components.min.js +2 -0
- package/lib/5.bri-components.min.js.map +1 -0
- package/lib/6.bri-components.min.js +2 -0
- package/lib/6.bri-components.min.js.map +1 -0
- package/lib/bri-components.min.js +21 -0
- package/lib/bri-components.min.js.gz +0 -0
- package/lib/bri-components.min.js.map +1 -0
- package/lib/styles/bri-components.css +1 -0
- package/lib/styles/bundle.css +14 -0
- package/lib/styles/font/fontello.eot +0 -0
- package/lib/styles/font/fontello.svg +32 -0
- package/lib/styles/font/fontello.ttf +0 -0
- package/lib/styles/font/fontello.woff +0 -0
- package/lib/styles/font/fontello.woff2 +0 -0
- package/package.json +121 -0
- package/src/.DS_Store +0 -0
- package/src/components/controls/base/DshBack.vue +36 -0
- package/src/components/controls/base/DshCascader.vue +366 -0
- package/src/components/controls/base/DshCascaderMultiple.vue +158 -0
- package/src/components/controls/base/DshCheckbox.vue +199 -0
- package/src/components/controls/base/DshCoordinates.vue +497 -0
- package/src/components/controls/base/DshDate.vue +148 -0
- package/src/components/controls/base/DshDaterange.vue +335 -0
- package/src/components/controls/base/DshDivider.vue +59 -0
- package/src/components/controls/base/DshEditor.vue +166 -0
- package/src/components/controls/base/DshInput.vue +139 -0
- package/src/components/controls/base/DshLabels.vue +302 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/BriInputNumber.vue +425 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/mixins/emitter.js +34 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/mixins/form.js +14 -0
- package/src/components/controls/base/DshNumber/BriInputNumber/utils/assist.js +322 -0
- package/src/components/controls/base/DshNumber/DshNumber.vue +148 -0
- package/src/components/controls/base/DshNumberange.vue +137 -0
- package/src/components/controls/base/DshPackage.vue +72 -0
- package/src/components/controls/base/DshSelect.vue +231 -0
- package/src/components/controls/base/DshSwitch.vue +112 -0
- package/src/components/controls/base/DshUndeveloped.vue +39 -0
- package/src/components/controls/base/YSerialNumber.vue +37 -0
- package/src/components/controls/base/ZUpload/YUploadImage.vue +228 -0
- package/src/components/controls/base/ZUpload/index.vue +356 -0
- package/src/components/controls/base/ZUpload/upload-list.vue +277 -0
- package/src/components/controls/base/ZUpload/upload-listItem.vue +0 -0
- package/src/components/controls/base/ZUpload/uploadMixin.js +397 -0
- package/src/components/controls/base/selectMixin.js +110 -0
- package/src/components/controls/base/textMultiple/DshTextMultiple.vue +94 -0
- package/src/components/controls/base/textMultiple/MultipleInput.vue +106 -0
- package/src/components/controls/controlMap.js +94 -0
- package/src/components/controls/controlMixin.js +84 -0
- package/src/components/form/DshAdvSearchForm.vue +341 -0
- package/src/components/form/DshDefaultSearch.vue +203 -0
- package/src/components/form/DshForm.vue +364 -0
- package/src/components/form/searchMixin.js +205 -0
- package/src/components/list/DshBox/DshBox.vue +168 -0
- package/src/components/list/DshBox/DshCard.vue +219 -0
- package/src/components/list/DshBox/DshCrossTable.vue +624 -0
- package/src/components/list/DshBox/DshList.vue +442 -0
- package/src/components/list/DshBox/DshPanel.vue +407 -0
- package/src/components/list/DshBox/DshSingleData.vue +82 -0
- package/src/components/list/DshBox/DshTable.vue +273 -0
- package/src/components/list/DshCascaderTable.vue +817 -0
- package/src/components/list/DshFlatTable.vue +622 -0
- package/src/components/list/ZTree.vue +527 -0
- package/src/components/list/easyTable/index.js +23 -0
- package/src/components/list/easyTable/src/directives/clickoutside.js +32 -0
- package/src/components/list/easyTable/src/mixins/layerAdjustment.js +62 -0
- package/src/components/list/easyTable/src/settings/settings.js +11 -0
- package/src/components/list/easyTable/src/utils/deepClone.js +256 -0
- package/src/components/list/easyTable/src/utils/dom.js +41 -0
- package/src/components/list/easyTable/src/utils/utils.js +190 -0
- package/src/components/list/easyTable/v-checkbox/index.js +7 -0
- package/src/components/list/easyTable/v-checkbox/src/checkbox.vue +127 -0
- package/src/components/list/easyTable/v-checkbox-group/index.js +7 -0
- package/src/components/list/easyTable/v-checkbox-group/src/checkbox-group.vue +68 -0
- package/src/components/list/easyTable/v-dropdown/index.js +7 -0
- package/src/components/list/easyTable/v-dropdown/src/dropdown.vue +337 -0
- package/src/components/list/easyTable/v-table/index.js +7 -0
- package/src/components/list/easyTable/v-table/src/body-cell-merge-mixin.js +141 -0
- package/src/components/list/easyTable/v-table/src/cell-edit-mixin.js +102 -0
- package/src/components/list/easyTable/v-table/src/checkbox-selection-mixin.js +189 -0
- package/src/components/list/easyTable/v-table/src/classes-mixin.js +56 -0
- package/src/components/list/easyTable/v-table/src/drag-width-mixin.js +202 -0
- package/src/components/list/easyTable/v-table/src/export-csv.js +74 -0
- package/src/components/list/easyTable/v-table/src/frozen-columns-mixin.js +134 -0
- package/src/components/list/easyTable/v-table/src/loading.vue +49 -0
- package/src/components/list/easyTable/v-table/src/scroll-bar-control-mixin.js +21 -0
- package/src/components/list/easyTable/v-table/src/scroll-control-mixin.js +92 -0
- package/src/components/list/easyTable/v-table/src/sort-control-mixin.js +108 -0
- package/src/components/list/easyTable/v-table/src/table-empty-mixin.js +73 -0
- package/src/components/list/easyTable/v-table/src/table-empty.vue +66 -0
- package/src/components/list/easyTable/v-table/src/table-filters-mixin.js +126 -0
- package/src/components/list/easyTable/v-table/src/table-footer-mixin.js +122 -0
- package/src/components/list/easyTable/v-table/src/table-resize-mixin.js +279 -0
- package/src/components/list/easyTable/v-table/src/table-row-mouse-events-mixin.js +123 -0
- package/src/components/list/easyTable/v-table/src/table.vue +1565 -0
- package/src/components/list/easyTable/v-table/src/title-cell-merge-mixin.js +115 -0
- package/src/components/list/evTable/EvTable.vue +323 -0
- package/src/components/list/evTable/EvTableMixin.js +26 -0
- package/src/components/other/DshAvatar.vue +149 -0
- package/src/components/other/DshBtnModal.vue +64 -0
- package/src/components/other/DshColorPanel.vue +128 -0
- package/src/components/other/DshEditPanel.vue +130 -0
- package/src/components/other/InfoCascader.vue +258 -0
- package/src/components/other/YNoPermission.vue +45 -0
- package/src/components/other/ZCode.vue +125 -0
- package/src/components/other/ZCollapseTree.vue +84 -0
- package/src/components/other/ZGantt.vue +669 -0
- package/src/components/other/ZIframe.vue +105 -0
- package/src/components/other/ZLoading.vue +59 -0
- package/src/components/other/menu/DshMenu.vue +133 -0
- package/src/components/other/menu/DshMenuNav.vue +104 -0
- package/src/components/pages/Error/Error403.vue +34 -0
- package/src/components/pages/Error/Error404.vue +34 -0
- package/src/components/pages/Error/Error500.vue +34 -0
- package/src/components/pages/Error/error.less +163 -0
- package/src/components/pages/Error/errorBack.vue +38 -0
- package/src/components/small/Ctooltip.vue +90 -0
- package/src/components/small/DshButtons.vue +195 -0
- package/src/components/small/DshControlDefine.vue +110 -0
- package/src/components/small/DshCrumbs.vue +61 -0
- package/src/components/small/DshCrumbsItem.vue +107 -0
- package/src/components/small/DshDropdown.vue +159 -0
- package/src/components/small/DshFileShow.vue +212 -0
- package/src/components/small/DshIcons.vue +63 -0
- package/src/components/small/DshModal.vue +255 -0
- package/src/components/small/DshPage.vue +98 -0
- package/src/components/small/DshSteps.vue +68 -0
- package/src/components/small/DshTabs.vue +227 -0
- package/src/components/small/DshTags.vue +58 -0
- package/src/components/small/DshTdRender.js +21 -0
- package/src/components/small/DshTitle.vue +36 -0
- package/src/components/small/render.js +20 -0
- package/src/components/unit/DshFormItem.vue +157 -0
- package/src/components/unit/DshUnit.vue +72 -0
- package/src/components/unit/unitMixin.js +43 -0
- package/src/datas/.DS_Store +0 -0
- package/src/datas/common/region.json +1 -0
- package/src/datas/common/resourceData.json +20 -0
- package/src/datas/index.js +11 -0
- package/src/index.js +243 -0
- package/src/styles/animate.less +16 -0
- package/src/styles/bundle.css +14 -0
- package/src/styles/common/box.less +157 -0
- package/src/styles/common/common.less +31 -0
- package/src/styles/common/flex.less +282 -0
- package/src/styles/common/index.less +4 -0
- package/src/styles/common/text.less +43 -0
- package/src/styles/components/controls/DshCascader.less +75 -0
- package/src/styles/components/controls/DshCheckbox.less +156 -0
- package/src/styles/components/controls/DshCoordinates.less +72 -0
- package/src/styles/components/controls/DshDaterange.less +49 -0
- package/src/styles/components/controls/DshDivider.less +115 -0
- package/src/styles/components/controls/DshEditor.less +52 -0
- package/src/styles/components/controls/DshInput.less +40 -0
- package/src/styles/components/controls/DshLabels.less +187 -0
- package/src/styles/components/controls/DshNumberange.less +24 -0
- package/src/styles/components/controls/DshPackage.less +25 -0
- package/src/styles/components/controls/DshSelect.less +172 -0
- package/src/styles/components/controls/MultipleInput.less +55 -0
- package/src/styles/components/controls/ZUpload.less +446 -0
- package/src/styles/components/form/DshAdvSearchForm.less +159 -0
- package/src/styles/components/form/DshDefaultSearch.less +71 -0
- package/src/styles/components/index.less +49 -0
- package/src/styles/components/list/DshCascaderTable.less +113 -0
- package/src/styles/components/list/DshCrossTable.less +175 -0
- package/src/styles/components/list/DshFlatTable.less +98 -0
- package/src/styles/components/list/DshSingleData.less +30 -0
- package/src/styles/components/list/evTable.less +79 -0
- package/src/styles/components/list/evtable/animation.less +141 -0
- package/src/styles/components/list/evtable/font/fontello.eot +0 -0
- package/src/styles/components/list/evtable/font/fontello.svg +32 -0
- package/src/styles/components/list/evtable/font/fontello.ttf +0 -0
- package/src/styles/components/list/evtable/font/fontello.woff +0 -0
- package/src/styles/components/list/evtable/font/fontello.woff2 +0 -0
- package/src/styles/components/list/evtable/fontello.less +68 -0
- package/src/styles/components/list/evtable/index.less +5 -0
- package/src/styles/components/list/evtable/v-checkbox.less +167 -0
- package/src/styles/components/list/evtable/v-dropdown.less +235 -0
- package/src/styles/components/list/evtable/v-table.less +334 -0
- package/src/styles/components/list/ivu_reset.less +49 -0
- package/src/styles/components/other/DshEditPanel.less +70 -0
- package/src/styles/components/other/DshMenu.less +37 -0
- package/src/styles/components/other/DshMenuNav.less +82 -0
- package/src/styles/components/other/InfoCascader.less +55 -0
- package/src/styles/components/other/ZCode.less +1 -0
- package/src/styles/components/other/ZCollapseTree.less +62 -0
- package/src/styles/components/other/ZGantt.less +278 -0
- package/src/styles/components/other/ZLoading.less +36 -0
- package/src/styles/components/small/Ctooltip.less +5 -0
- package/src/styles/components/small/DshButtons.less +40 -0
- package/src/styles/components/small/DshControlDefine.less +64 -0
- package/src/styles/components/small/DshDropdown.less +61 -0
- package/src/styles/components/small/DshPage.less +94 -0
- package/src/styles/components/small/DshSteps.less +58 -0
- package/src/styles/components/small/DshTabs.less +82 -0
- package/src/styles/components/small/DshTitle.less +18 -0
- package/src/styles/components/unit/DshFormItem.less +124 -0
- package/src/styles/define.less +374 -0
- package/src/styles/index.less +10 -0
- package/src/styles/reset.less +83 -0
- package/src/styles/variables.less +98 -0
- package/src/styles/view_reset.less +446 -0
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
|
|
3
|
+
.v-table-views *,
|
|
4
|
+
.v-table-views *:before,
|
|
5
|
+
.v-table-views *:after {
|
|
6
|
+
-webkit-box-sizing: border-box;
|
|
7
|
+
-moz-box-sizing: border-box;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.v-table-views {
|
|
12
|
+
-webkit-box-sizing: border-box;
|
|
13
|
+
-moz-box-sizing: border-box;
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
|
|
16
|
+
position: relative;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
// border: 1px solid rgba(221, 221, 221, 1);
|
|
19
|
+
padding: 0;
|
|
20
|
+
background-color: rgb(255, 255, 255);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.v-table-footer {
|
|
24
|
+
border-top: 1px solid rgba(221, 221, 221, 1);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.v-table-leftview,
|
|
28
|
+
.v-table-rightview {
|
|
29
|
+
position: absolute;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
top: 0px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.v-table-centerview {
|
|
35
|
+
position: static;
|
|
36
|
+
overflow: auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.v-table-leftview {
|
|
40
|
+
left: 0px;
|
|
41
|
+
box-shadow: 2px 0 6px -2px rgba(0, 0, 0, 0.1);
|
|
42
|
+
z-index: 2;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.v-table-rightview {
|
|
46
|
+
right: 0px;
|
|
47
|
+
z-index: 2;
|
|
48
|
+
box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.v-table-header {
|
|
52
|
+
overflow: hidden;
|
|
53
|
+
position: fixed;
|
|
54
|
+
z-index: 1;
|
|
55
|
+
|
|
56
|
+
&-notFixed {
|
|
57
|
+
position: absolute;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.v-table-header {
|
|
63
|
+
background-position: initial;
|
|
64
|
+
background-size: initial;
|
|
65
|
+
background-attachment: initial;
|
|
66
|
+
background-origin: initial;
|
|
67
|
+
background-clip: initial;
|
|
68
|
+
background-color: initial;
|
|
69
|
+
background-repeat-x: repeat;
|
|
70
|
+
background-repeat-y: no-repeat;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.v-table-header,
|
|
74
|
+
.v-table-toolbar,
|
|
75
|
+
.v-table-pager,
|
|
76
|
+
.v-table-footer-inner {
|
|
77
|
+
border-color: rgba(221, 221, 221, 1);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.v-table-header-inner {
|
|
81
|
+
float: left;
|
|
82
|
+
width: 10000px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.v-table-htable,
|
|
86
|
+
.v-table-btable,
|
|
87
|
+
.v-table-ftable {
|
|
88
|
+
border-collapse: separate;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/*.v-table-btable tr:nth-child(even) {
|
|
92
|
+
background:#f4f4f4;
|
|
93
|
+
}*/
|
|
94
|
+
|
|
95
|
+
.v-table-header td,
|
|
96
|
+
.v-table-body td,
|
|
97
|
+
.v-table-footer td {
|
|
98
|
+
margin: 0;
|
|
99
|
+
padding: 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.v-table-body-cell {
|
|
103
|
+
padding: 0 3px;
|
|
104
|
+
margin: 0;
|
|
105
|
+
border-width: 0;
|
|
106
|
+
border-style: solid;
|
|
107
|
+
border-color: #E5E5E5;
|
|
108
|
+
|
|
109
|
+
white-space: nowrap;
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
text-overflow: ellipsis;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.v-table-body {
|
|
115
|
+
margin: 0;
|
|
116
|
+
padding: 0;
|
|
117
|
+
zoom: 1;
|
|
118
|
+
overflow-x: hidden;
|
|
119
|
+
overflow-y: hidden;
|
|
120
|
+
/* position: relative;
|
|
121
|
+
z-index: 1; */
|
|
122
|
+
}
|
|
123
|
+
.v-table-row {
|
|
124
|
+
background-color: #ffffff;
|
|
125
|
+
&:hover {
|
|
126
|
+
background-color: rgba(61, 132, 238, 0.05);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.v-table-centerview .v-table-body,
|
|
131
|
+
.v-table-centerview .v-table-footer {
|
|
132
|
+
overflow-x: auto;
|
|
133
|
+
overflow-y: auto;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
.v-table-leftview .v-table-body {
|
|
138
|
+
overflow-x: hidden !important;
|
|
139
|
+
overflow-y: hidden !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.v-table-rightview .v-table-body {
|
|
143
|
+
overflow-x: hidden !important;
|
|
144
|
+
overflow-y: hidden !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.v-table-leftview .v-table-body-inner {
|
|
148
|
+
/* padding-bottom: 20px;*/
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.v-table-rightview .v-table-body-inner {
|
|
152
|
+
/* padding-bottom: 20px;*/
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.v-table-body-inner-pb {
|
|
156
|
+
padding-bottom: 20px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.v-table-centerview {
|
|
160
|
+
right: 0px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.v-table-title-cell {
|
|
164
|
+
margin: 0;
|
|
165
|
+
border-width: 0;
|
|
166
|
+
border-style: solid;
|
|
167
|
+
border-color: #E5E5E5;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.v-table-title-cell:before {
|
|
171
|
+
content: '';
|
|
172
|
+
display: inline-block;
|
|
173
|
+
height: 100%;
|
|
174
|
+
vertical-align: middle;
|
|
175
|
+
/* border: 1px solid red;*/
|
|
176
|
+
/* so we can see what's going on */
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.table-title {
|
|
180
|
+
display: inline-block;
|
|
181
|
+
padding: 0 3px;
|
|
182
|
+
vertical-align: middle;
|
|
183
|
+
word-break: break-all;
|
|
184
|
+
overflow: hidden;
|
|
185
|
+
line-height: 1.2em;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.v-table-sort-icon {
|
|
189
|
+
position: absolute;
|
|
190
|
+
top: 2px;
|
|
191
|
+
right: -10px;
|
|
192
|
+
display: inline-block;
|
|
193
|
+
vertical-align: middle;
|
|
194
|
+
/*font-size:16px;*/
|
|
195
|
+
width: 16px;
|
|
196
|
+
height: 19px;
|
|
197
|
+
margin-left: -5px;
|
|
198
|
+
overflow: hidden;
|
|
199
|
+
cursor: pointer;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.v-table-sort-icon i {
|
|
203
|
+
|
|
204
|
+
position: absolute;
|
|
205
|
+
display: block;
|
|
206
|
+
width: 16px;
|
|
207
|
+
height: 15px;
|
|
208
|
+
/*line-height: 12px;*/
|
|
209
|
+
overflow: hidden;
|
|
210
|
+
color: #a6a6a6;
|
|
211
|
+
transition: color .2s ease-in-out;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.v-table-sort-icon i:first-child {
|
|
215
|
+
top: -5px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.v-table-sort-icon i:last-child {
|
|
219
|
+
bottom: 1px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.v-table-header .cursorPointer {
|
|
223
|
+
cursor: pointer;
|
|
224
|
+
-webkit-user-select: none;
|
|
225
|
+
-moz-user-select: none;
|
|
226
|
+
-khtml-user-select: none;
|
|
227
|
+
-ms-user-select: none;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.vertical-border {
|
|
231
|
+
border-right-width: 1px !important;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.horizontal-border {
|
|
235
|
+
border-bottom-width: 1px !important;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.v-table-rightview-special-border td:last-child .v-table-body-cell {
|
|
239
|
+
border-right-width: 0 !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
.v-table-rightview .vertical-border {
|
|
244
|
+
border-right-width: 0px !important;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.v-table-leftview .vertical-border {
|
|
248
|
+
border-left-width: 0px !important;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.v-table-dropdown {
|
|
252
|
+
margin-left: -3px !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.v-table-filter-icon {
|
|
256
|
+
font-size: 14px;
|
|
257
|
+
cursor: pointer;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/*没数据时的样式 start*/
|
|
261
|
+
.v-table-empty {}
|
|
262
|
+
|
|
263
|
+
.v-table-empty-scroll {
|
|
264
|
+
|
|
265
|
+
position: absolute;
|
|
266
|
+
overflow-y: hidden;
|
|
267
|
+
text-align: center;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.v-table-empty-content {
|
|
271
|
+
position: absolute;
|
|
272
|
+
overflow-x: auto;
|
|
273
|
+
overflow-y: hidden;
|
|
274
|
+
text-align: center;
|
|
275
|
+
|
|
276
|
+
border: 1px solid #E5E5E5;
|
|
277
|
+
border-top: none;
|
|
278
|
+
border-left: none;
|
|
279
|
+
border-right: none;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.v-table-empty-inner {
|
|
283
|
+
overflow: hidden;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/*没数据时的样式 end*/
|
|
287
|
+
|
|
288
|
+
/*loading start*/
|
|
289
|
+
|
|
290
|
+
.v-table-loading {
|
|
291
|
+
|
|
292
|
+
position: relative;
|
|
293
|
+
display: block;
|
|
294
|
+
z-index: 99999;
|
|
295
|
+
background-color: #fff;
|
|
296
|
+
height: 100%;
|
|
297
|
+
width: 100%;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
.v-table-loading-content {
|
|
302
|
+
z-index: 9999999;
|
|
303
|
+
position: absolute;
|
|
304
|
+
left: 50%;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/*loading end*/
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
/*列拖动线 start*/
|
|
312
|
+
.v-table-drag-line {
|
|
313
|
+
|
|
314
|
+
position: absolute;
|
|
315
|
+
left: 0;
|
|
316
|
+
top: 0;
|
|
317
|
+
bottom: 0;
|
|
318
|
+
width: 0;
|
|
319
|
+
border-left: 2px dashed #ddd;
|
|
320
|
+
z-index: 10;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
.v-table-sort-icon .checked {
|
|
325
|
+
color: #48576a;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.v-table-filter-icon {
|
|
329
|
+
color: #999;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.v-table-filter-icon.checked {
|
|
333
|
+
color: #48576a;
|
|
334
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.v-page-ul .ivu-select{
|
|
2
|
+
float: left;
|
|
3
|
+
height: 24px;
|
|
4
|
+
line-height: 20px;
|
|
5
|
+
border: 1px solid #3DB8C5;
|
|
6
|
+
.ivu-select-selection{
|
|
7
|
+
height: 22px;
|
|
8
|
+
background: #ffffff;
|
|
9
|
+
border: none;
|
|
10
|
+
&:hover{
|
|
11
|
+
border: none;
|
|
12
|
+
};
|
|
13
|
+
.ivu-select-arrow {
|
|
14
|
+
right: 3px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.ivu-select-dropdown {
|
|
18
|
+
.ivu-select-item-selected, .ivu-select-item-focus{
|
|
19
|
+
background: #E8F3FD;
|
|
20
|
+
color: #878787;
|
|
21
|
+
}
|
|
22
|
+
.ivu-select-item{
|
|
23
|
+
font-size: 12px!important;
|
|
24
|
+
padding: 8px 16px;
|
|
25
|
+
&:hover{
|
|
26
|
+
background: #E8F3FD;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
&::-webkit-scrollbar{
|
|
30
|
+
width: 4px;
|
|
31
|
+
height:6px;
|
|
32
|
+
}
|
|
33
|
+
&::-webkit-scrollbar-thumb{
|
|
34
|
+
background: #EDEDED;
|
|
35
|
+
border-radius:10px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ms-modal-header-simple{
|
|
41
|
+
.ivu-modal{
|
|
42
|
+
width: 418px!important;
|
|
43
|
+
&-header{
|
|
44
|
+
border-bottom: 0px;
|
|
45
|
+
padding: 20px 30px 5px 30px;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
.DshEditPanel {
|
|
2
|
+
width: 220px;
|
|
3
|
+
height: 240px;
|
|
4
|
+
text-align: left;
|
|
5
|
+
&-name {}
|
|
6
|
+
&-colors {
|
|
7
|
+
padding: 40px 0 0 0;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
&-item {
|
|
10
|
+
width: 46px;
|
|
11
|
+
height: 46px;
|
|
12
|
+
float: left;
|
|
13
|
+
margin-right: 20px;
|
|
14
|
+
margin-bottom: 10px;
|
|
15
|
+
border-radius: 50%;
|
|
16
|
+
border: 2px solid #DBDBDB;
|
|
17
|
+
padding: 1px;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
position: relative;
|
|
20
|
+
&-content {
|
|
21
|
+
width: 40px;
|
|
22
|
+
height: 40px;
|
|
23
|
+
border-radius: 50%;
|
|
24
|
+
}
|
|
25
|
+
&-icon {
|
|
26
|
+
position: absolute;
|
|
27
|
+
top: -6px;
|
|
28
|
+
right: -4px;
|
|
29
|
+
color: @tabTextActiveColor;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
&-icons {
|
|
34
|
+
padding: 40px 0px 0px 0;
|
|
35
|
+
&-item {
|
|
36
|
+
float: left;
|
|
37
|
+
width: 55px;
|
|
38
|
+
height: 55px;
|
|
39
|
+
margin-right: 20px;
|
|
40
|
+
margin-bottom: 10px;
|
|
41
|
+
background: #FBF8F2;
|
|
42
|
+
border-radius: 8px;
|
|
43
|
+
padding: 10px;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
&-content {
|
|
46
|
+
width: 100%;
|
|
47
|
+
height: 100%;
|
|
48
|
+
background-repeat: no-repeat;
|
|
49
|
+
background-size: contain;
|
|
50
|
+
text-align: center;
|
|
51
|
+
line-height: 35px;
|
|
52
|
+
i {
|
|
53
|
+
color: #ffffff;
|
|
54
|
+
font-size: 18px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
&:hover {
|
|
58
|
+
color: @tabTextActiveColor;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.DshEditPanel {
|
|
65
|
+
&-form {
|
|
66
|
+
.ivu-form-item {
|
|
67
|
+
margin-bottom: 15px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.DshMenu {
|
|
2
|
+
&-item {
|
|
3
|
+
&-badge {
|
|
4
|
+
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
&-icon {
|
|
8
|
+
margin-right: 8px;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&-submenu {
|
|
13
|
+
&-title {
|
|
14
|
+
&-icon {
|
|
15
|
+
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.DshMenu {}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.ivu-menu {
|
|
23
|
+
&-item {
|
|
24
|
+
padding: 10px 16px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&-submenu-title {
|
|
28
|
+
padding: 10px 16px;
|
|
29
|
+
|
|
30
|
+
// 组标题行 右侧下拉图标
|
|
31
|
+
&-icon {
|
|
32
|
+
margin-right: 0px!important;
|
|
33
|
+
right: 16px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
.DshMenuNav {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
border-radius: 8px;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: row;
|
|
8
|
+
|
|
9
|
+
&-nav {
|
|
10
|
+
width: 121px;
|
|
11
|
+
height: 100%;
|
|
12
|
+
background-color: #ffffff;
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
position: relative;
|
|
16
|
+
box-shadow: @boxShadowRight;
|
|
17
|
+
&-left {
|
|
18
|
+
}
|
|
19
|
+
&-right {
|
|
20
|
+
border-left: 1px solid @borderColor;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&-title {
|
|
24
|
+
padding: 10px 20px;
|
|
25
|
+
height: 80px;
|
|
26
|
+
line-height: 60px;
|
|
27
|
+
font-weight: 600;
|
|
28
|
+
font-size: 16px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.list {
|
|
32
|
+
flex: 1;
|
|
33
|
+
min-height: 0px;
|
|
34
|
+
overflow: auto;
|
|
35
|
+
&-item {
|
|
36
|
+
padding: 10px 30px;
|
|
37
|
+
background-color: #ffffff;
|
|
38
|
+
line-height: 20px;
|
|
39
|
+
font-size: @smallTitleSize;
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
&:hover {
|
|
42
|
+
color: @tabTextActiveColor;
|
|
43
|
+
}
|
|
44
|
+
&-active {
|
|
45
|
+
color: @tabTextActiveColor;
|
|
46
|
+
background-color: @tabBgActiveColor;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&-bottom {
|
|
50
|
+
width: 100%;
|
|
51
|
+
border-top: 1px solid @borderColor;
|
|
52
|
+
position: absolute;
|
|
53
|
+
left: 0px;
|
|
54
|
+
bottom: 0px;
|
|
55
|
+
}
|
|
56
|
+
&-beforeText {
|
|
57
|
+
display: block;
|
|
58
|
+
color: @textColor;
|
|
59
|
+
padding: 15px 5px 5px 15px;
|
|
60
|
+
margin: -10px -30px 10px -30px;
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
background: #fff;
|
|
63
|
+
}
|
|
64
|
+
&-iconClass {
|
|
65
|
+
color: @tabTextActiveColor;
|
|
66
|
+
padding-right: 5px;
|
|
67
|
+
font-size: 18px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&-view {
|
|
74
|
+
flex: 1;
|
|
75
|
+
min-width: 0px;
|
|
76
|
+
height: 100%;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.DshMenuNav {
|
|
81
|
+
|
|
82
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.InfoCascader {
|
|
2
|
+
height: 100%;
|
|
3
|
+
|
|
4
|
+
&-search {
|
|
5
|
+
padding: 24px 24px 0;
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&-content {
|
|
10
|
+
height: calc(100% - 142px);
|
|
11
|
+
margin: 5px 24px 24px;
|
|
12
|
+
display: flex;
|
|
13
|
+
border: 1px solid #E5E5E5;
|
|
14
|
+
|
|
15
|
+
&-left {
|
|
16
|
+
flex: 1;
|
|
17
|
+
padding: 5px 0 5px 10px;
|
|
18
|
+
overflow: auto;
|
|
19
|
+
border-right: 1px solid #E5E5E5;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-right {
|
|
23
|
+
flex: 1;
|
|
24
|
+
|
|
25
|
+
&-title {
|
|
26
|
+
border-bottom: 1px solid #E5E5E5;
|
|
27
|
+
font-weight: 700;
|
|
28
|
+
// height: 32px;
|
|
29
|
+
// line-height: 32px;
|
|
30
|
+
|
|
31
|
+
padding: 6px 16px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&-content {
|
|
35
|
+
height: calc(100% - 32px);
|
|
36
|
+
overflow: auto;
|
|
37
|
+
padding: 16px;
|
|
38
|
+
white-space: pre-line;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ivu-tree-title-selected {
|
|
43
|
+
color: #3D84EE;
|
|
44
|
+
background-color: #eee;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-footer {
|
|
49
|
+
&-btns {
|
|
50
|
+
display: flex;
|
|
51
|
+
justify-content: flex-end;
|
|
52
|
+
padding-right: 16px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
.ZCollapseTree {
|
|
2
|
+
&-listItem {
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
padding: 6px 12px;
|
|
6
|
+
line-height: 20px;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
&-text {
|
|
9
|
+
}
|
|
10
|
+
&-grey {
|
|
11
|
+
text-align: right;
|
|
12
|
+
color: @textColor;
|
|
13
|
+
margin-left: 10px;
|
|
14
|
+
}
|
|
15
|
+
&:hover {
|
|
16
|
+
background: @bgColor;
|
|
17
|
+
}
|
|
18
|
+
&-current {
|
|
19
|
+
font-weight: normal;
|
|
20
|
+
color: @themeColor;
|
|
21
|
+
}
|
|
22
|
+
&-disabled {
|
|
23
|
+
cursor: not-allowed;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
&-collapseItem {
|
|
27
|
+
padding: 6px 0px;
|
|
28
|
+
flex: 1;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ZCollapseTree {
|
|
33
|
+
&-collapse {
|
|
34
|
+
border: none;
|
|
35
|
+
.ivu-collapse-item>.ivu-collapse-header {
|
|
36
|
+
padding: 0px;
|
|
37
|
+
height: auto;
|
|
38
|
+
min-height: 32px;
|
|
39
|
+
line-height: 18px;
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
i {
|
|
43
|
+
margin-right: 0px;
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
width: 30px;
|
|
48
|
+
height: 30px;
|
|
49
|
+
}
|
|
50
|
+
&:hover {
|
|
51
|
+
background: @bgColor;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
.ivu-collapse-content {
|
|
55
|
+
padding: 0px;
|
|
56
|
+
}
|
|
57
|
+
.ivu-collapse-content>.ivu-collapse-content-box {
|
|
58
|
+
padding: 0px;
|
|
59
|
+
padding-left: 18px;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|