zydx-plus 1.19.101 → 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
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<button class="but" @click="complete">{{ butText }}</button>
|
|
22
22
|
</div>
|
|
23
23
|
<div class="enclosure" v-if="uploadAttData.length > 0 && enclosureShow">
|
|
24
|
-
<p v-if="editorShow"
|
|
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
|