zydx-plus 1.19.99 → 1.19.102
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
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
<div class="editor-but" v-if="butText !== ''&& readOnly">
|
|
21
21
|
<button class="but" @click="complete">{{ butText }}</button>
|
|
22
22
|
</div>
|
|
23
|
-
<div class="enclosure" v-if="uploadAttData.length > 0">
|
|
24
|
-
<p v-if="editorShow"
|
|
23
|
+
<div class="enclosure" v-if="uploadAttData.length > 0 && enclosureShow">
|
|
24
|
+
<p v-if="editorShow" :style="enclosureStyle">{{ enclosureText }}</p>
|
|
25
25
|
<div class="enclosure-list" v-for="(item,index) in uploadAttData">
|
|
26
26
|
<div class="enclosure-item">
|
|
27
27
|
<span>{{ index + 1 }}. {{ (item.name)? item.name : item.annexName }}</span>
|
|
@@ -107,6 +107,10 @@ export default {
|
|
|
107
107
|
type: String,
|
|
108
108
|
default: ''
|
|
109
109
|
},
|
|
110
|
+
enclosureText: {
|
|
111
|
+
type: String,
|
|
112
|
+
default: '附件列表:'
|
|
113
|
+
},
|
|
110
114
|
titleStyle: {
|
|
111
115
|
type: Object,
|
|
112
116
|
default: {
|
|
@@ -115,6 +119,14 @@ export default {
|
|
|
115
119
|
'color': '#000'
|
|
116
120
|
}
|
|
117
121
|
},
|
|
122
|
+
enclosureStyle: {
|
|
123
|
+
type: Object,
|
|
124
|
+
default: {
|
|
125
|
+
'font-size': '16px',
|
|
126
|
+
'font-weight': 'bold',
|
|
127
|
+
'color': '#000'
|
|
128
|
+
}
|
|
129
|
+
},
|
|
118
130
|
readOnly: {
|
|
119
131
|
type: Boolean,
|
|
120
132
|
default: true
|
|
@@ -158,6 +170,10 @@ export default {
|
|
|
158
170
|
borderShow: {
|
|
159
171
|
type: Boolean,
|
|
160
172
|
default: true
|
|
173
|
+
},
|
|
174
|
+
enclosureShow: {
|
|
175
|
+
type: Boolean,
|
|
176
|
+
default: true
|
|
161
177
|
}
|
|
162
178
|
},
|
|
163
179
|
emits: ['see','del','complete','update:data'],
|