bri-components 1.3.34 → 1.3.36
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/package.json +1 -1
- package/src/components/controls/base/BriUpload/BriUpload.vue +4 -4
- package/src/components/controls/base/BriUpload/uploadList.vue +5 -4
- package/src/components/controls/mixins/controlMixin.js +3 -0
- package/src/components/list/DshTreeTable.vue +1 -0
- package/src/components/list/mixins/tableBaseMixin.js +4 -1
- package/src/styles/components/small/DshModal.less +2 -1
package/package.json
CHANGED
|
@@ -323,14 +323,14 @@
|
|
|
323
323
|
&-new,
|
|
324
324
|
&-inline {
|
|
325
325
|
&-wrapper {
|
|
326
|
-
min-width:
|
|
327
|
-
height:
|
|
328
|
-
line-height:
|
|
326
|
+
min-width: 32px;
|
|
327
|
+
height: 32px;
|
|
328
|
+
line-height: 32px;
|
|
329
329
|
background-color: @border-readonly;
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
&-add {
|
|
333
|
-
height:
|
|
333
|
+
height: 32px;
|
|
334
334
|
border: none;
|
|
335
335
|
border-radius: 0px;
|
|
336
336
|
background-color: @btn-hover;
|
|
@@ -393,12 +393,13 @@
|
|
|
393
393
|
color: #fff;
|
|
394
394
|
align-items: center;
|
|
395
395
|
justify-content: center;
|
|
396
|
+
flex-wrap: wrap;
|
|
396
397
|
|
|
397
398
|
&-icon {
|
|
398
|
-
width:
|
|
399
|
-
height:
|
|
400
|
-
|
|
401
|
-
|
|
399
|
+
width: 16px;
|
|
400
|
+
height: 16px;
|
|
401
|
+
font-size: 16px !important;
|
|
402
|
+
margin: 0px;
|
|
402
403
|
}
|
|
403
404
|
}
|
|
404
405
|
|
|
@@ -138,6 +138,9 @@ export default {
|
|
|
138
138
|
screenKey () {
|
|
139
139
|
return this.propsObj.screenKey;
|
|
140
140
|
},
|
|
141
|
+
allScreenKey () {
|
|
142
|
+
return this.propsObj.allScreenKey;
|
|
143
|
+
},
|
|
141
144
|
commonPropsObj () {
|
|
142
145
|
return {
|
|
143
146
|
// isShare: false, // 是否是分享页在用
|
|
@@ -220,7 +223,7 @@ export default {
|
|
|
220
223
|
},
|
|
221
224
|
quoteParams () {
|
|
222
225
|
return {
|
|
223
|
-
screenKey: this.
|
|
226
|
+
screenKey: this.allScreenKey,
|
|
224
227
|
fields: [...this.quoteListFields, this.controlKey, "createdAt"],
|
|
225
228
|
advSearch: {
|
|
226
229
|
logic: "and",
|