2025-08-07 15:16:23 +08:00
|
|
|
<template>
|
|
|
|
|
<page-layout>
|
|
|
|
|
<a-row :gutter="[10, 10]">
|
|
|
|
|
<!-- 顶部区域 -->
|
|
|
|
|
<a-col :span="24">
|
|
|
|
|
<a-card>
|
|
|
|
|
<!-- 查询参数 -->
|
|
|
|
|
<pro-query :searchParam="searchParam" @on-search="search"></pro-query>
|
|
|
|
|
</a-card>
|
|
|
|
|
</a-col>
|
|
|
|
|
<!-- 中心区域 -->
|
|
|
|
|
<a-col :span="24">
|
|
|
|
|
<a-card>
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<pro-table ref="tableRef" rowKey="id" :fetch="fetch" :columns="columns" :toolbar="toolbar" :operate="operate"
|
|
|
|
|
:param="state.param" :pagination="pagination"
|
|
|
|
|
:row-selection="{ selectedRowKeys: state.selectedRowKeys, onChange: onSelectChange }">
|
|
|
|
|
<!-- 继承至 a-table 的默认插槽 -->
|
|
|
|
|
</pro-table>
|
|
|
|
|
</a-card>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
<save :visible="state.visibleSave" @close="closeSave"></save>
|
|
|
|
|
<edit :visible="state.visibleEdit" @close="closeEdit" :record="state.recordEdit"></edit>
|
|
|
|
|
<info :visible="state.visibleInfo" @close="closeInfo" :record="state.recordInfo"></info>
|
|
|
|
|
</page-layout>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import save from "./modal/save";
|
|
|
|
|
import edit from "./modal/edit";
|
|
|
|
|
import info from "./modal/info";
|
|
|
|
|
import {
|
|
|
|
|
message,
|
|
|
|
|
modal
|
2025-11-03 16:40:10 +08:00
|
|
|
} from '@hwork/ant-design-vue';
|
2025-08-07 15:16:23 +08:00
|
|
|
import {
|
|
|
|
|
ExclamationCircleOutlined
|
|
|
|
|
} from '@ant-design/icons-vue';
|
|
|
|
|
import {
|
|
|
|
|
tree,
|
|
|
|
|
remove
|
|
|
|
|
} from "@/api/module/power";
|
|
|
|
|
import {
|
|
|
|
|
reactive,
|
|
|
|
|
createVNode,
|
|
|
|
|
ref
|
|
|
|
|
} from 'vue';
|
|
|
|
|
|
|
|
|
|
const removeKey = "remove";
|
|
|
|
|
const removeBatchKey = "removeBatch";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
save,
|
|
|
|
|
edit,
|
|
|
|
|
info,
|
|
|
|
|
},
|
|
|
|
|
setup() {
|
|
|
|
|
|
|
|
|
|
const tableRef = ref();
|
|
|
|
|
|
|
|
|
|
const switchFormat = {
|
|
|
|
|
yes: true,
|
|
|
|
|
no: false,
|
|
|
|
|
event: function(value, record) {
|
|
|
|
|
record.enable = !record.enable;
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// 删除配置
|
|
|
|
|
const removeMethod = (record) => {
|
|
|
|
|
message.loading({
|
|
|
|
|
content: "提交中...",
|
|
|
|
|
key: removeKey
|
|
|
|
|
});
|
|
|
|
|
remove({
|
|
|
|
|
"id": record.id
|
|
|
|
|
}).then((response) => {
|
|
|
|
|
if (response.success) {
|
|
|
|
|
message.success({
|
|
|
|
|
content: "删除成功",
|
|
|
|
|
key: removeKey,
|
|
|
|
|
duration: 1
|
|
|
|
|
}).then(() => {
|
|
|
|
|
tableRef.value.reload()
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
message.error({
|
|
|
|
|
content: "删除失败",
|
|
|
|
|
key: removeKey,
|
|
|
|
|
duration: 1
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const converFormat = [{
|
|
|
|
|
label: '目录',
|
|
|
|
|
value: '0'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '菜单',
|
|
|
|
|
value: '1'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '按钮',
|
|
|
|
|
value: '2'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
/// 列配置
|
|
|
|
|
const columns = [{
|
|
|
|
|
dataIndex: "title",
|
|
|
|
|
key: "title",
|
|
|
|
|
title: "权限名"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
dataIndex: "component",
|
|
|
|
|
key: "component",
|
|
|
|
|
title: "组件"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
dataIndex: "type",
|
|
|
|
|
key: "type",
|
|
|
|
|
title: "类型",
|
|
|
|
|
conver: converFormat
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
dataIndex: "path",
|
|
|
|
|
key: "path",
|
|
|
|
|
title: "路径"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
dataIndex: "i18n",
|
|
|
|
|
key: "i18n",
|
|
|
|
|
title: "国际化"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
dataIndex: "enable",
|
|
|
|
|
key: "enable",
|
|
|
|
|
title: "状态",
|
|
|
|
|
switch: switchFormat
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
dataIndex: "sort",
|
|
|
|
|
key: "sort",
|
|
|
|
|
title: "排序"
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/// 数据来源 [模拟]
|
|
|
|
|
const fetch = async (param) => {
|
|
|
|
|
var response = await tree(param);
|
|
|
|
|
return {
|
|
|
|
|
data: response.data,
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// 工具栏
|
|
|
|
|
const toolbar = [{
|
|
|
|
|
label: "新增",
|
|
|
|
|
code: "sys:power:save",
|
|
|
|
|
event: function() {
|
|
|
|
|
state.visibleSave = true
|
|
|
|
|
}
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
/// 行操作
|
|
|
|
|
const operate = [{
|
|
|
|
|
label: "查看",
|
|
|
|
|
code: "sys:power:info",
|
|
|
|
|
event: function(record) {
|
|
|
|
|
state.visibleInfo = true, state.recordInfo = record
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "修改",
|
|
|
|
|
code: "sys:power:edit",
|
|
|
|
|
event: function(record) {
|
|
|
|
|
state.visibleEdit = true, state.recordEdit = record
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "删除",
|
|
|
|
|
isDel: true,
|
|
|
|
|
code: "sys:power:remove",
|
|
|
|
|
delEvent: function(record) {
|
|
|
|
|
removeMethod(record)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/// 分页参数
|
|
|
|
|
const pagination = false;
|
|
|
|
|
|
|
|
|
|
/// 外置参数 - 当参数改变时, 重新触发 fetch 函数
|
|
|
|
|
const state = reactive({
|
|
|
|
|
selectedRowKeys: [],
|
|
|
|
|
param: {},
|
|
|
|
|
visibleSave: false,
|
|
|
|
|
visibleEdit: false,
|
|
|
|
|
visibleInfo: false,
|
|
|
|
|
recordEdit: {},
|
|
|
|
|
recordInfo: {},
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/// 查询参数
|
|
|
|
|
const searchParam = [{
|
|
|
|
|
key: "name",
|
|
|
|
|
type: "input",
|
|
|
|
|
label: "名称"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: "code",
|
|
|
|
|
type: "input",
|
|
|
|
|
label: "描述"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: "state",
|
|
|
|
|
type: "select",
|
|
|
|
|
label: "状态",
|
|
|
|
|
value: "0",
|
|
|
|
|
hidden: true,
|
|
|
|
|
options: [{
|
|
|
|
|
text: "全部",
|
|
|
|
|
value: "0"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "开启",
|
|
|
|
|
value: "1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "关闭",
|
|
|
|
|
value: "2"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
/// 查询操作
|
|
|
|
|
const search = function(value) {
|
|
|
|
|
state.param = value
|
|
|
|
|
tableRef.value.reload()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const onSelectChange = selectedRowKeys => {
|
|
|
|
|
state.selectedRowKeys = selectedRowKeys;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const closeSave = function() {
|
|
|
|
|
state.visibleSave = false;
|
|
|
|
|
tableRef.value.reload();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const closeEdit = function() {
|
|
|
|
|
state.visibleEdit = false;
|
|
|
|
|
tableRef.value.reload();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const closeInfo = function() {
|
|
|
|
|
state.visibleInfo = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
state,
|
|
|
|
|
fetch,
|
|
|
|
|
search,
|
|
|
|
|
toolbar,
|
|
|
|
|
columns,
|
|
|
|
|
operate,
|
|
|
|
|
pagination,
|
|
|
|
|
searchParam,
|
|
|
|
|
onSelectChange,
|
|
|
|
|
|
|
|
|
|
closeSave,
|
|
|
|
|
closeEdit,
|
|
|
|
|
closeInfo,
|
|
|
|
|
|
|
|
|
|
tableRef
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|