bri-components 1.4.96 → 1.4.98
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/uploadList.vue +4 -5
- package/src/components/controls/base/DshNumber/BriInputNumber/BriInputNumber.vue +2 -2
- package/src/components/form/DshAdvSearch.vue +1 -1
- package/src/components/list/DshBox/DshBox.vue +1 -1
- package/src/components/list/DshPage.vue +2 -2
- package/src/components/small/DshButtons.vue +3 -3
- package/src/styles/components/BriTable.less +1 -1
package/package.json
CHANGED
|
@@ -674,16 +674,15 @@
|
|
|
674
674
|
|
|
675
675
|
&-fileList {
|
|
676
676
|
width: 100%;
|
|
677
|
+
|
|
677
678
|
&-fileName {
|
|
678
|
-
width: 100%;
|
|
679
|
-
height: 100%;
|
|
680
679
|
cursor: pointer;
|
|
681
|
-
display: flex;
|
|
682
|
-
justify-content: space-between;
|
|
683
|
-
align-items: center;
|
|
684
680
|
|
|
685
681
|
&-edit {
|
|
686
682
|
padding: 0 8px;
|
|
683
|
+
display: flex;
|
|
684
|
+
justify-content: space-between;
|
|
685
|
+
align-items: center;
|
|
687
686
|
}
|
|
688
687
|
}
|
|
689
688
|
}
|
|
@@ -133,8 +133,8 @@
|
|
|
133
133
|
default () {
|
|
134
134
|
return !this.$IVIEW || this.$IVIEW.size === "" ? "default" : this.$IVIEW.size;
|
|
135
135
|
},
|
|
136
|
-
validator (
|
|
137
|
-
return ["small", "large", "default"].includes(
|
|
136
|
+
validator (val) {
|
|
137
|
+
return ["small", "large", "default"].includes(val);
|
|
138
138
|
}
|
|
139
139
|
},
|
|
140
140
|
disabled: {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
:title="operationItem.tipTitle"
|
|
21
21
|
:content="operationItem.tipContent"
|
|
22
22
|
word-wrap
|
|
23
|
-
width="220"
|
|
23
|
+
:width="operationItem.tipWidth || 220"
|
|
24
24
|
:transfer="true"
|
|
25
25
|
>
|
|
26
26
|
<bri-button
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
:title="operationItem.tipTitle"
|
|
90
90
|
:content="operationItem.tipContent"
|
|
91
91
|
word-wrap
|
|
92
|
-
width="220"
|
|
92
|
+
:width="operationItem.tipWidth || 220"
|
|
93
93
|
:transfer="true"
|
|
94
94
|
>
|
|
95
95
|
<bri-button
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
:title="operationItem.tipTitle"
|
|
137
137
|
:content="operationItem.tipContent"
|
|
138
138
|
word-wrap
|
|
139
|
-
width="220"
|
|
139
|
+
:width="operationItem.tipWidth || 220"
|
|
140
140
|
popper-class="DshButtons-poptip"
|
|
141
141
|
:transfer="true"
|
|
142
142
|
>
|