Files
mayfly-go/mayfly_go_web/src/views/system/role/ShowResource.vue

90 lines
2.8 KiB
Vue
Raw Normal View History

<template>
<div>
2021-09-08 17:55:57 +08:00
<el-dialog @close="closeDialog" :title="title" :before-close="closeDialog" v-model="dialogVisible" width="400px">
<el-tree style="height: 50vh; overflow: auto" :data="resources" node-key="id" :props="defaultProps" :expand-on-click-node="false">
<template #default="{ node, data }">
<span class="custom-tree-node">
<span v-if="data.type == enums.ResourceTypeEnum.MENU.value">{{ node.label }}</span>
<span v-if="data.type == enums.ResourceTypeEnum.PERMISSION.value" style="color: #67c23a">{{ node.label }}</span>
<el-link @click.prevent="info(data)" style="margin-left: 25px" icon="el-icon-view" type="info" :underline="false" />
</span>
</template>
</el-tree>
</el-dialog>
</div>
</template>
<script lang="ts">
import { getCurrentInstance, toRefs, reactive, watch, defineComponent } from 'vue';
import { ElMessageBox } from 'element-plus';
import enums from '../enums';
export default defineComponent({
name: 'ShowResource',
props: {
visible: {
type: Boolean,
},
resources: {
type: Array,
},
title: {
type: String,
},
},
setup(props: any, { emit }) {
const { proxy } = getCurrentInstance() as any;
const state = reactive({
2021-09-08 17:55:57 +08:00
dialogVisible: false,
defaultProps: {
children: 'children',
label: 'name',
},
});
watch(
() => props.visible,
2021-09-08 17:55:57 +08:00
(newValue) => {
state.dialogVisible = newValue;
}
);
const info = (info: any) => {
ElMessageBox.alert(
'<strong style="margin-right: 18px">资源名称:</strong>' +
info.name +
' <br/><strong style="margin-right: 18px">分配账号:</strong>' +
info.creator +
' <br/><strong style="margin-right: 18px">分配时间:</strong>' +
proxy.$filters.dateFormat(info.createTime) +
'',
'分配信息',
{
type: 'info',
dangerouslyUseHTMLString: true,
closeOnClickModal: true,
showConfirmButton: false,
}
2021-09-08 17:55:57 +08:00
).catch(() => {});
return;
};
const closeDialog = () => {
emit('update:visible', false);
emit('update:resources', []);
};
return {
...toRefs(state),
enums,
info,
closeDialog,
};
},
});
</script>
<style>
</style>