zydx-plus 1.28.130 → 1.28.131
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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<div class="ed-head-but" v-for="(item,index) in toolbar">
|
|
7
7
|
<button v-if="item.key === 'but'" class="but" @click="item.onClick(item,info)" :style="{color: (item.active)? '#00ff00' :'#000'}">{{ item.title }}</button>
|
|
8
8
|
<label v-else-if="item.key === 'upImg' || item.key === 'uploadAtt'">
|
|
9
|
-
<input type="file" @change="upload($event,item.key)" :accept="(item.key === 'upImg')?'image/*':'
|
|
9
|
+
<input type="file" @change="upload($event,item.key)" :accept="(item.key === 'upImg')?'image/*':'.docx,.pptx,.pdf,.xlsx,.mp3,.mp4'" style="display: none;">
|
|
10
10
|
<span class="but">{{ item.title }}</span>
|
|
11
11
|
</label>
|
|
12
12
|
<button v-else class="but" @click="toolTap(item.key)">{{ item.title }}</button>
|
|
@@ -192,7 +192,8 @@ export default {
|
|
|
192
192
|
height: v-bind(height);
|
|
193
193
|
cursor: grabbing;
|
|
194
194
|
gap: 16px;
|
|
195
|
-
border-bottom: v-bind(border)
|
|
195
|
+
border-bottom: v-bind(border);
|
|
196
|
+
position:relative;
|
|
196
197
|
}
|
|
197
198
|
|
|
198
199
|
.tree_text_active {
|
|
@@ -245,6 +246,9 @@ export default {
|
|
|
245
246
|
font-size: 16px;
|
|
246
247
|
line-height: 30px;
|
|
247
248
|
letter-spacing: 0px;
|
|
249
|
+
white-space: nowrap;
|
|
250
|
+
overflow: hidden;
|
|
251
|
+
text-overflow: ellipsis;
|
|
248
252
|
}
|
|
249
253
|
|
|
250
254
|
.children {
|