leisure-core 0.5.79 → 0.5.81
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-role/src/main.vue +3 -0
- package/package.json +1 -1
package/le-role/src/main.vue
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
@close="closeEditDialog"
|
|
54
54
|
@rowRefresh="list"
|
|
55
55
|
:rowitem="currentRow"
|
|
56
|
+
v-if="showEdit"
|
|
56
57
|
></le-role-sub>
|
|
57
58
|
</le-dialog-container>
|
|
58
59
|
<le-dialog-container
|
|
@@ -67,6 +68,7 @@
|
|
|
67
68
|
row-key="id"
|
|
68
69
|
tooltip-effect="dark"
|
|
69
70
|
style="width: 100%"
|
|
71
|
+
v-if="showUsers"
|
|
70
72
|
>
|
|
71
73
|
<el-table-column prop="account" label="账号" align="center">
|
|
72
74
|
</el-table-column>
|
|
@@ -125,6 +127,7 @@ export default {
|
|
|
125
127
|
});
|
|
126
128
|
},
|
|
127
129
|
addRole() {
|
|
130
|
+
this.currentRow = {};
|
|
128
131
|
this.showEdit = true;
|
|
129
132
|
},
|
|
130
133
|
openEditWindow(item) {
|