bri-components 1.3.30 → 1.3.31
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/10.bri-components.min.js +1 -0
- package/lib/11.bri-components.min.js +1 -0
- 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 -0
- package/lib/8.bri-components.min.js +1 -0
- package/lib/9.bri-components.min.js +1 -0
- package/lib/bri-components.min.js +16 -16
- package/package.json +1 -1
- package/src/components/controls/senior/cascaderTable.vue +29 -173
- package/src/components/controls/senior/flatTable/flatTable.vue +55 -242
- package/src/components/list/DshCascaderTable.vue +231 -34
- package/src/components/list/DshFlatTable.vue +62 -2
- package/src/components/list/DshTreeTable.vue +158 -30
- package/src/components/list/mixins/flatTableMixin.js +5 -42
- package/src/components/list/mixins/tableBaseMixin.js +203 -7
- package/src/styles/components/list/BriTable.less +38 -7
- /package/src/components/{controls/senior/flatTable → list/common}/flatTableImportModal.vue +0 -0
|
@@ -68,8 +68,10 @@
|
|
|
68
68
|
tr.ve-table-body-tr,
|
|
69
69
|
tr.ve-table-expand-tr {
|
|
70
70
|
height: auto;
|
|
71
|
+
// position: relative;
|
|
71
72
|
|
|
72
73
|
td.ve-table-body-td {
|
|
74
|
+
height: 40px;
|
|
73
75
|
padding: 4px 16px;
|
|
74
76
|
}
|
|
75
77
|
}
|
|
@@ -122,7 +124,7 @@
|
|
|
122
124
|
|
|
123
125
|
&-td {
|
|
124
126
|
position: relative;
|
|
125
|
-
|
|
127
|
+
|
|
126
128
|
&-tip {
|
|
127
129
|
padding: 0px 0px 0px 16px;
|
|
128
130
|
font-size: 12px;
|
|
@@ -138,27 +140,56 @@
|
|
|
138
140
|
padding: 0px;
|
|
139
141
|
margin-left: 16px;
|
|
140
142
|
}
|
|
141
|
-
|
|
143
|
+
|
|
142
144
|
&-btn {
|
|
143
145
|
margin-left: 16px;
|
|
144
146
|
padding: 0px;
|
|
145
|
-
|
|
146
|
-
|
|
147
|
+
|
|
147
148
|
&:first-of-type {
|
|
148
149
|
margin: 0px;
|
|
149
150
|
}
|
|
150
151
|
}
|
|
151
152
|
}
|
|
152
|
-
|
|
153
|
+
|
|
154
|
+
&-show {
|
|
155
|
+
|
|
156
|
+
}
|
|
153
157
|
&-edit {
|
|
154
158
|
padding: 4px 16px 12px 16px!important;
|
|
155
159
|
}
|
|
156
|
-
|
|
157
|
-
|
|
160
|
+
|
|
161
|
+
&-visible {
|
|
162
|
+
@keyframes slideDown {
|
|
163
|
+
from {
|
|
164
|
+
top: -40px;
|
|
165
|
+
opacity: 0.9;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
to {
|
|
169
|
+
top: 0px;
|
|
170
|
+
opacity: 1;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
animation: slideDown .2s linear;
|
|
158
175
|
}
|
|
159
176
|
&-hide {
|
|
177
|
+
// @keyframes slideDown2 {
|
|
178
|
+
// from {
|
|
179
|
+
// top: 0px;
|
|
180
|
+
// opacity: 1;
|
|
181
|
+
// }
|
|
182
|
+
|
|
183
|
+
// to {
|
|
184
|
+
// top: -40px;
|
|
185
|
+
// opacity: 0.9;
|
|
186
|
+
// }
|
|
187
|
+
// }
|
|
188
|
+
|
|
160
189
|
display: none!important;
|
|
190
|
+
// animation: slideDown2 .2s linear;
|
|
161
191
|
}
|
|
192
|
+
|
|
162
193
|
&-index {
|
|
163
194
|
padding: 4px 16px 4px 12px!important;
|
|
164
195
|
}
|
|
File without changes
|