|
@@ -34,15 +34,13 @@
|
|
|
</el-tree>
|
|
|
<div slot="footer" class="dialog-footer text-center">
|
|
|
<el-button @click="dialog = false">取 消</el-button>
|
|
|
- <el-button type="danger" @click="handleSubmit">确 定</el-button>
|
|
|
+ <el-button type="danger" :disabled="booLock" @click="handleSubmit">确 定</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { mapGetters } from 'vuex'
|
|
|
-
|
|
|
export default {
|
|
|
props: {
|
|
|
value: {
|
|
@@ -67,7 +65,7 @@ export default {
|
|
|
treeData: [],
|
|
|
defaultChecked: [],
|
|
|
dialog: !!this.value,
|
|
|
-
|
|
|
+ booLock: false
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -79,7 +77,6 @@ export default {
|
|
|
keys = [...selectedKeys, ...keys]
|
|
|
// 去重
|
|
|
// keys = [...new Set(keys)]
|
|
|
- console.log({ keys })
|
|
|
this.$refs.tree.setCheckedKeys(keys)
|
|
|
},
|
|
|
clear (node, data) {
|
|
@@ -104,7 +101,9 @@ export default {
|
|
|
},
|
|
|
async handleSubmit () {
|
|
|
let rule_id = this.$refs.tree.getCheckedKeys()
|
|
|
+ this.booLock = true
|
|
|
const data = await this.$fetch('/api/auth/role/set_role_rule', { id: this.exData.id, rule_id })
|
|
|
+ this.booLock = false
|
|
|
if (data.code == 200) {
|
|
|
this.$message.success('修改成功')
|
|
|
this.$emit('success')
|