leisure-core 0.5.73 → 0.5.74
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/src/main.vue +5 -1
- package/package.json +1 -1
package/le-list/src/main.vue
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
<template v-else>
|
|
59
59
|
<div class="rowBtns">
|
|
60
60
|
<le-button @click="editItem(scope.row)" v-if="disBtn === 'edit'">
|
|
61
|
-
|
|
61
|
+
{{ editBtnText }}</le-button
|
|
62
62
|
>
|
|
63
63
|
<le-button @click="detail(scope.row)" v-if="disBtn === 'detail'">
|
|
64
64
|
详情</le-button
|
|
@@ -153,6 +153,10 @@ export default {
|
|
|
153
153
|
type: String,
|
|
154
154
|
default: "id",
|
|
155
155
|
},
|
|
156
|
+
editBtnText: {
|
|
157
|
+
type: String,
|
|
158
|
+
default: "编辑",
|
|
159
|
+
},
|
|
156
160
|
},
|
|
157
161
|
watch: {
|
|
158
162
|
searchParam: {
|