<script setup>
|
import { getCurrentInstance, ref, computed, reactive, onMounted } from 'vue';
|
import { get, post } from '@/utils/request.js'
|
import * as Icons from "@ant-design/icons-vue";
|
import EditView from './edit.vue'
|
const context = getCurrentInstance()?.appContext.config.globalProperties;
|
const components = {
|
...Icons,
|
};
|
|
const searchInput = ref("")
|
const editChild = ref(null)
|
|
let tableData = ref([]);
|
getPage();
|
|
const typeMap = {
|
0: {
|
color: 'success',
|
text: '菜单',
|
},
|
1: {
|
color: 'default',
|
text: '按钮',
|
},
|
};
|
|
const state = reactive({
|
selectedRowKeys: [],
|
loading: false,
|
});
|
const hasSelected = computed(() => state.selectedRowKeys.length > 0);
|
const start = () => {
|
state.loading = true;
|
// ajax request after empty completing
|
setTimeout(() => {
|
state.loading = false;
|
state.selectedRowKeys = [];
|
}, 1000);
|
};
|
const onSelectChange = selectedRowKeys => {
|
// console.log('selectedRowKeys changed: ', selectedRowKeys);
|
state.selectedRowKeys = selectedRowKeys;
|
};
|
|
function getPage() {
|
post('/api/menu/tree', {}).then((result) => {
|
if (result.data.code == 200) {
|
let data = result.data.data;
|
tableData.value = data;
|
console.log(data);
|
editChild.value.treeData = [{
|
id: 0,
|
name: '根目录',
|
children: data
|
}];
|
} else {
|
|
}
|
})
|
}
|
|
const handleEdit = (item) => {
|
editChild.value.open = true;
|
editChild.value.formData = item == null ? editChild.value.initFormData : item;
|
}
|
|
const handleExport = async (intl) => {
|
post('/api/menu/export', {}).then(result => {
|
const blob = new Blob([result.data], { type: 'application/vnd.ms-excel' });
|
window.location.href = window.URL.createObjectURL(blob);
|
return true;
|
})
|
};
|
|
const onSearch = () => {
|
console.log('search');
|
}
|
|
function handleTableReload(value) {
|
getPage()
|
}
|
|
</script>
|
|
<script>
|
export default {
|
name: '菜单管理'
|
}
|
</script>
|
|
<template>
|
<div>
|
<EditView ref="editChild" @tableReload="handleTableReload" />
|
<div class="table-header">
|
<a-input-search v-model:value="searchInput" placeholder="请输入" style="width: 200px;" @search="onSearch" />
|
<div class="table-header-right">
|
<a-button @click="handleEdit(null)" type="primary">添加</a-button>
|
<a-button @click="handleExport">导出</a-button>
|
</div>
|
</div>
|
<a-table :row-selection="{ selectedRowKeys: state.selectedRowKeys, onChange: onSelectChange }"
|
:data-source="tableData" :defaultExpandAllRows="false" key="menu" rowKey="id">
|
<a-table-column title="菜单名称" key="name" data-index="name" />
|
<a-table-column title="路由地址" key="route" data-index="route" />
|
<a-table-column title="类型" key="type" data-index="type$">
|
<template #default="{ record }">
|
<span>
|
<a-tag :color="typeMap[record.type].color">{{ record.type$ }}</a-tag>
|
</span>
|
</template>
|
</a-table-column>
|
<a-table-column title="权限标识" key="authority" data-index="authority" />
|
<a-table-column title="菜单图标" key="icon" data-index="icon">
|
<template #default="{ record }">
|
<component :is="components[ref(record.icon).value]" />
|
</template>
|
</a-table-column>
|
<a-table-column title="排序" key="sort" data-index="sort" />
|
<a-table-column title="状态" key="status$" data-index="status$" />
|
<a-table-column title="修改时间" key="updateTime$" data-index="updateTime$" />
|
<a-table-column title="操作" key="oper" data-index="oper">
|
<template #default="{ record }">
|
<div style="display: flex;justify-content: space-evenly;">
|
<a-button type="link" primary @click="handleEdit(record)">编辑</a-button>
|
<a-button type="link" danger>删除</a-button>
|
</div>
|
</template>
|
</a-table-column>
|
</a-table>
|
</div>
|
</template>
|
|
<style></style>
|