leisure-core 0.6.57 → 0.6.58
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
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
@click="detail(scope.row)"
|
|
76
76
|
v-if="disBtn === 'detail'"
|
|
77
77
|
>
|
|
78
|
-
|
|
78
|
+
{{ detailBtnText }}</le-button
|
|
79
79
|
>
|
|
80
80
|
<le-button-msg @click="del(scope.row.id)" v-if="isDispDelBtn"
|
|
81
81
|
>删除</le-button-msg
|
|
@@ -167,6 +167,10 @@ export default {
|
|
|
167
167
|
type: String,
|
|
168
168
|
default: "新建",
|
|
169
169
|
},
|
|
170
|
+
detailBtnText: {
|
|
171
|
+
type: String,
|
|
172
|
+
default: "详情",
|
|
173
|
+
},
|
|
170
174
|
isDispDelBtn: {
|
|
171
175
|
type: Boolean,
|
|
172
176
|
default: false,
|