leisure-core 0.6.59 → 0.6.60
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/le-list-form/src/main.vue +11 -1
- package/package.json +1 -1
|
@@ -73,7 +73,13 @@
|
|
|
73
73
|
v-if="handleStatus == 1 || handleStatus == 2"
|
|
74
74
|
>保存</le-button
|
|
75
75
|
>
|
|
76
|
-
<le-button
|
|
76
|
+
<le-button
|
|
77
|
+
type="info"
|
|
78
|
+
@click="close()"
|
|
79
|
+
:disabled="false"
|
|
80
|
+
v-if="showCloseBtn"
|
|
81
|
+
>关闭</le-button
|
|
82
|
+
>
|
|
77
83
|
</el-form-item>
|
|
78
84
|
</el-form>
|
|
79
85
|
</template>
|
|
@@ -133,6 +139,10 @@ export default {
|
|
|
133
139
|
type: Boolean,
|
|
134
140
|
default: false,
|
|
135
141
|
},
|
|
142
|
+
showCloseBtn: {
|
|
143
|
+
type: Boolean,
|
|
144
|
+
default: true,
|
|
145
|
+
},
|
|
136
146
|
},
|
|
137
147
|
watch: {
|
|
138
148
|
formData: {
|