zydx-plus 1.19.99 → 1.19.101

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zydx-plus",
3
- "version": "1.19.99",
3
+ "version": "1.19.101",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -20,7 +20,7 @@
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">
23
+ <div class="enclosure" v-if="uploadAttData.length > 0 && enclosureShow">
24
24
  <p v-if="editorShow">附件列表:</p>
25
25
  <div class="enclosure-list" v-for="(item,index) in uploadAttData">
26
26
  <div class="enclosure-item">
@@ -158,6 +158,10 @@ export default {
158
158
  borderShow: {
159
159
  type: Boolean,
160
160
  default: true
161
+ },
162
+ enclosureShow: {
163
+ type: Boolean,
164
+ default: true
161
165
  }
162
166
  },
163
167
  emits: ['see','del','complete','update:data'],
package/src/index.js CHANGED
@@ -57,7 +57,7 @@ function install(app) {
57
57
  }
58
58
 
59
59
  export default {
60
- version: '1.19.99',
60
+ version: '1.19.101',
61
61
  install,
62
62
  Calendar,
63
63
  Message,