323 lines
8.4 KiB
Vue
323 lines
8.4 KiB
Vue
<template>
|
|
<div class="container">
|
|
<Breadcrumb :items="['menu.system', 'menu.system.dept']" />
|
|
<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="16">
|
|
<a-col :span="10">
|
|
<a-form-item field="title" label="部门名称">
|
|
<a-input
|
|
v-model="formModel.name"
|
|
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>
|
|
<DeptEdit
|
|
ref="createRef"
|
|
:trees="renderData"
|
|
:is-create="true"
|
|
@refresh="search"
|
|
/>
|
|
</a-space>
|
|
</a-col>
|
|
<a-col
|
|
:span="12"
|
|
style="display: flex; align-items: center; justify-content: end"
|
|
>
|
|
<a-tooltip :content="$t('searchTable.actions.refresh')">
|
|
<div class="action-icon" @click="search">
|
|
<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"
|
|
:default-expand-all-rows="true"
|
|
:loading="loading"
|
|
:columns="(cloneColumns as TableColumnData[])"
|
|
:data="renderData"
|
|
:bordered="false"
|
|
:size="size"
|
|
>
|
|
<template #index="{ rowIndex }">
|
|
{{ rowIndex + 1 }}
|
|
</template>
|
|
<template #createTime="{ record }">
|
|
{{ dayjs(record.createTime).format('YYYY-MM-DD') }}
|
|
</template>
|
|
<template #enabled="{ record }">
|
|
<a-switch
|
|
:model-value="record.enabled"
|
|
:checked-value="true"
|
|
:unchecked-value="false"
|
|
@change="enabledStatus(record)"
|
|
/>
|
|
</template>
|
|
<template #operations="{ record }">
|
|
<DeptEdit
|
|
ref="editRef"
|
|
:dept="record"
|
|
:trees="renderData"
|
|
:is-create="false"
|
|
@refresh="search"
|
|
/>
|
|
<a-popconfirm
|
|
content="确认删除此部门?"
|
|
type="error"
|
|
@ok="handleDelete(record)"
|
|
>
|
|
<a-button type="primary" size="small" status="danger">
|
|
删除
|
|
</a-button>
|
|
</a-popconfirm>
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, watch } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import useLoading from '@/hooks/loading';
|
|
import useTableOption from '@/hooks/table-option';
|
|
import type { TableColumnData } from '@arco-design/web-vue/es/table/interface';
|
|
import dayjs from 'dayjs';
|
|
import { Message } from '@arco-design/web-vue';
|
|
import { DeptRecord } from '@/api/dept';
|
|
import { useDeptStore } from '@/store';
|
|
import DeptEdit from './components/dept-edit.vue';
|
|
|
|
const { loading, setLoading } = useLoading(true);
|
|
const deptStore = useDeptStore();
|
|
const {
|
|
cloneColumns,
|
|
showColumns,
|
|
size,
|
|
densityList,
|
|
handleSelectDensity,
|
|
handleChange,
|
|
popupVisibleChange,
|
|
deepClone,
|
|
} = useTableOption();
|
|
|
|
const generateFormModel = () => {
|
|
return {
|
|
name: '',
|
|
code: '',
|
|
};
|
|
};
|
|
|
|
const { t } = useI18n();
|
|
const renderData = ref<DeptRecord[]>([]);
|
|
const formModel = ref(generateFormModel());
|
|
const columns = computed<TableColumnData[]>(() => [
|
|
{
|
|
title: t('deptTable.columns.index'),
|
|
dataIndex: 'index',
|
|
slotName: 'index',
|
|
},
|
|
{
|
|
title: t('deptTable.columns.name'),
|
|
dataIndex: 'name',
|
|
},
|
|
{
|
|
title: t('deptTable.columns.id'),
|
|
dataIndex: 'id',
|
|
},
|
|
{
|
|
title: t('deptTable.columns.remark'),
|
|
dataIndex: 'remark',
|
|
},
|
|
{
|
|
title: t('deptTable.columns.createTime'),
|
|
dataIndex: 'createTime',
|
|
slotName: 'createTime',
|
|
},
|
|
{
|
|
title: t('deptTable.columns.enabled'),
|
|
dataIndex: 'enabled',
|
|
slotName: 'enabled',
|
|
},
|
|
{
|
|
title: t('searchTable.columns.operations'),
|
|
dataIndex: 'operations',
|
|
slotName: 'operations',
|
|
},
|
|
]);
|
|
|
|
const fetchData = async (params?: Partial<DeptRecord>) => {
|
|
setLoading(true);
|
|
try {
|
|
const res = await deptStore.getDeptList(params);
|
|
const { data } = res;
|
|
renderData.value = data;
|
|
} catch (err) {
|
|
// you can report use errorHandler or other
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const search = () => {
|
|
fetchData({
|
|
...formModel.value,
|
|
});
|
|
};
|
|
|
|
search();
|
|
|
|
const reset = () => {
|
|
formModel.value = generateFormModel();
|
|
};
|
|
|
|
// 是否启用
|
|
const enabledStatus = async (record: string) => {
|
|
record.enabled = !record.enabled;
|
|
const res = await deptStore.enabledDept(record.id);
|
|
if (res.status === 200) {
|
|
Message.success({
|
|
content: t('modify.status.sucess'),
|
|
duration: 3 * 1000,
|
|
});
|
|
} else {
|
|
Message.error({
|
|
content: t('modify.status.fail'),
|
|
duration: 3 * 1000,
|
|
});
|
|
}
|
|
// search();
|
|
};
|
|
|
|
const handleDelete = async (record) => {
|
|
const res = await deptStore.removeDept(record.id);
|
|
if (res.status === 200) {
|
|
Message.success({
|
|
content: '删除成功',
|
|
duration: 5 * 1000,
|
|
});
|
|
search();
|
|
}
|
|
};
|
|
|
|
watch(() => columns.value, deepClone, { deep: true, immediate: true });
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'Dept',
|
|
};
|
|
</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>
|