bill-fontend/src/views/system/permission/index.vue

384 lines
10 KiB
Vue
Raw Normal View History

<template>
<div class="container">
<Breadcrumb :items="['menu.system', 'menu.system.permission']" />
<a-card class="general-card" :title="$t('menu.list.searchTable')">
<a-row>
<a-col :flex="1">
<a-form
:model="formModel"
:label-col-props="{ span: 6 }"
:wrapper-col-props="{ span: 18 }"
label-align="right"
>
<a-row :gutter="24">
<a-col :span="8">
<a-form-item field="module" label="权限模块">
<a-input
v-model="formModel.module"
placeholder="请输入权限名称"
/>
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="title" label="权限名称">
<a-input
v-model="formModel.title"
placeholder="请输入权限名称"
/>
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="code" label="权限编码">
<a-input
v-model="formModel.code"
placeholder="请输入权限编码"
/>
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-col>
<a-divider style="height: 42px" direction="vertical" />
<a-col :flex="'46px'" style="text-align: right">
<a-space :size="18">
<a-button type="primary" @click="search">
<template #icon>
<icon-search />
</template>
{{ $t('searchTable.form.search') }}
</a-button>
<a-button @click="reset">
<template #icon>
<icon-refresh />
</template>
{{ $t('searchTable.form.reset') }}
</a-button>
</a-space>
</a-col>
</a-row>
<a-divider style="margin-top: 10px" />
<a-row style="margin-bottom: 16px">
<!-- <a-col :span="12">-->
<!-- <a-space>-->
<!-- <PermissionEdit-->
<!-- ref="createRef"-->
<!-- :is-create="true"-->
<!-- @refresh="refresh"-->
<!-- />-->
<!-- </a-space>-->
<!-- </a-col>-->
<a-col
:span="24"
style="display: flex; align-items: center; justify-content: end"
>
<a-tooltip :content="$t('searchTable.actions.refresh')">
<div class="action-icon" @click="refresh">
<icon-refresh size="18" />
</div>
</a-tooltip>
<a-dropdown @select="handleSelectDensity">
<a-tooltip :content="$t('searchTable.actions.density')">
<div class="action-icon"><icon-line-height size="18" /></div>
</a-tooltip>
<template #content>
<a-doption
v-for="item in densityList"
:key="item.value"
:value="item.value"
:class="{ active: item.value === size }"
>
<span>{{ item.name }}</span>
</a-doption>
</template>
</a-dropdown>
<a-tooltip :content="$t('searchTable.actions.columnSetting')">
<a-popover
trigger="click"
position="bl"
@popup-visible-change="popupVisibleChange"
>
<div class="action-icon"><icon-settings size="18" /></div>
<template #content>
<div id="tableSetting">
<div
v-for="(item, index) in showColumns"
:key="item.dataIndex"
class="setting"
>
<div style="margin-right: 4px; cursor: move">
<icon-drag-arrow />
</div>
<div>
<a-checkbox
v-model="item.checked"
@change="
handleChange($event, item as TableColumnData, index)
"
>
</a-checkbox>
</div>
<div class="title">
{{ item.title === '#' ? '序列号' : item.title }}
</div>
</div>
</div>
</template>
</a-popover>
</a-tooltip>
</a-col>
</a-row>
<a-table
row-key="id"
show-empty-tree
:loading="loading"
:columns="(cloneColumns as TableColumnData[])"
:data="renderData"
:bordered="false"
:size="size"
>
<template #enableState="{ record }">
<span v-if="record.enableState === '启用'" class="circle pass"></span>
<span v-else class="circle"></span>
{{ record.enableState }}
</template>
<template #operations="{ record }">
<PermissionEdit
ref="editRef"
:prem="record"
:is-create="false"
@refresh="refresh"
/>
<!-- <a-popconfirm-->
<!-- content="确认删除此用户?"-->
<!-- type="error"-->
<!-- @ok="handleDelete(record)"-->
<!-- >-->
<!-- <a-button type="outline" size="small" status="danger">-->
<!-- 删除-->
<!-- </a-button>-->
<!-- </a-popconfirm>-->
</template>
</a-table>
</a-card>
</div>
</template>
<script lang="ts" setup>
import { computed, ref, watch, nextTick } from 'vue';
import { useI18n } from 'vue-i18n';
import useLoading from '@/hooks/loading';
import {
PermissionRecord,
listToTree,
list,
remove,
PermissionTreeRecord,
} from '@/api/permission';
import type { TableColumnData } from '@arco-design/web-vue/es/table/interface';
import cloneDeep from 'lodash/cloneDeep';
import Sortable from 'sortablejs';
import { Message } from '@arco-design/web-vue';
import PermissionEdit from './components/permission-edit.vue';
type SizeProps = 'mini' | 'small' | 'medium' | 'large';
type Column = TableColumnData & { checked?: true };
const generateFormModel = () => {
return {
module: '',
title: '',
code: '',
};
};
const { loading, setLoading } = useLoading(true);
const { t } = useI18n();
const renderData = ref<PermissionTreeRecord[]>([]);
const formModel = ref(generateFormModel());
const cloneColumns = ref<Column[]>([]);
const showColumns = ref<Column[]>([]);
const size = ref<SizeProps>('medium');
const densityList = computed(() => [
{
name: t('searchTable.size.mini'),
value: 'mini',
},
{
name: t('searchTable.size.small'),
value: 'small',
},
{
name: t('searchTable.size.medium'),
value: 'medium',
},
{
name: t('searchTable.size.large'),
value: 'large',
},
]);
const columns = computed<TableColumnData[]>(() => [
{
title: t('searchTable.columns.index'),
dataIndex: 'id',
slotName: 'index',
},
{
title: '权限模块',
dataIndex: 'module',
},
{
title: '权限名称',
dataIndex: 'title',
},
{
title: '权限编码',
dataIndex: 'code',
},
{
title: t('searchTable.columns.operations'),
dataIndex: 'operations',
slotName: 'operations',
},
]);
const fetchData = async (params?: Partial<PermissionTreeRecord>) => {
setLoading(true);
try {
const res = await list(params);
const { data } = res;
renderData.value = listToTree(data);
} catch (err) {
// you can report use errorHandler or other
} finally {
setLoading(false);
}
};
const search = () => {
fetchData({
...formModel.value,
});
};
const refresh = () => {
fetchData();
};
fetchData();
const reset = () => {
formModel.value = generateFormModel();
};
const handleSelectDensity = (
val: string | number | Record<string, any> | undefined,
e: Event
) => {
size.value = val as SizeProps;
};
const handleChange = (
checked: boolean | (string | boolean | number)[],
column: Column,
index: number
) => {
if (!checked) {
cloneColumns.value = showColumns.value.filter(
(item) => item.dataIndex !== column.dataIndex
);
} else {
cloneColumns.value.splice(index, 0, column);
}
};
const exchangeArray = <T extends Array<any>>(
array: T,
beforeIdx: number,
newIdx: number,
isDeep = false
): T => {
const newArray = isDeep ? cloneDeep(array) : array;
if (beforeIdx > -1 && newIdx > -1) {
// 先替换后面的,然后拿到替换的结果替换前面的
newArray.splice(
beforeIdx,
1,
newArray.splice(newIdx, 1, newArray[beforeIdx]).pop()
);
}
return newArray;
};
const popupVisibleChange = (val: boolean) => {
if (val) {
nextTick(() => {
const el = document.getElementById('tableSetting') as HTMLElement;
const sortable = new Sortable(el, {
onEnd(e: any) {
const { oldIndex, newIndex } = e;
exchangeArray(cloneColumns.value, oldIndex, newIndex);
exchangeArray(showColumns.value, oldIndex, newIndex);
},
});
});
}
};
const handleDelete = async (record: PermissionRecord) => {
const res = await remove(record.id as number);
if (res.status === 200) {
Message.success({
content: '删除成功',
duration: 5 * 1000,
});
refresh();
}
};
watch(
() => columns.value,
(val) => {
cloneColumns.value = cloneDeep(val);
cloneColumns.value.forEach((item, index) => {
item.checked = true;
});
showColumns.value = cloneDeep(cloneColumns.value);
},
{ deep: true, immediate: true }
);
</script>
<script lang="ts">
export default {
name: 'Permission',
};
</script>
<style scoped lang="less">
.container {
padding: 0 20px 20px 20px;
}
:deep(.arco-table-th) {
&:last-child {
.arco-table-th-item-title {
margin-left: 16px;
}
}
}
.action-icon {
margin-left: 12px;
cursor: pointer;
}
.active {
color: #0960bd;
background-color: #e3f4fc;
}
.setting {
display: flex;
align-items: center;
width: 200px;
.title {
margin-left: 12px;
cursor: pointer;
}
}
</style>