zydx-plus 1.33.367 → 1.33.368
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
CHANGED
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
</g>
|
|
91
91
|
</svg>
|
|
92
92
|
</button>
|
|
93
|
+
<button class="buts but-f" v-if="Object.keys(enclosureButton).length > 0" @click="enclosureButton.onClick(item,index)">{{ enclosureButton.name }}</button>
|
|
93
94
|
</div>
|
|
94
95
|
</div>
|
|
95
96
|
</div>
|
|
@@ -250,6 +251,10 @@ export default {
|
|
|
250
251
|
numberStyle: {
|
|
251
252
|
type: Boolean,
|
|
252
253
|
default: false
|
|
254
|
+
},
|
|
255
|
+
enclosureButton: {
|
|
256
|
+
type: Object,
|
|
257
|
+
default: {}
|
|
253
258
|
}
|
|
254
259
|
},
|
|
255
260
|
emits: ['see', 'del', 'complete', 'update:data', 'enclosureSuccess', 'download', 'updateData'],
|
|
@@ -884,11 +889,11 @@ export default {
|
|
|
884
889
|
}
|
|
885
890
|
|
|
886
891
|
.enclosure-item:first-child {
|
|
887
|
-
width: calc(100% -
|
|
892
|
+
width: calc(100% - 270px);
|
|
888
893
|
}
|
|
889
894
|
|
|
890
895
|
.enclosure-item:last-child {
|
|
891
|
-
width:
|
|
896
|
+
width: 270px;
|
|
892
897
|
}
|
|
893
898
|
|
|
894
899
|
.enclosure-item {
|