2024-06-15 13:02:35 +08:00
|
|
|
|
<template>
|
2024-07-16 16:07:57 +08:00
|
|
|
|
<div class="sys-pos-container">
|
2024-06-30 21:35:50 +08:00
|
|
|
|
<el-card shadow="hover" :body-style="{ padding: '5px 5px 0 5px', display: 'flex', width: '100%', height: '100%', alignItems: 'start' }">
|
2024-07-06 00:56:24 +08:00
|
|
|
|
<el-form :model="state.queryParams" ref="queryForm" :show-message="false" :inlineMessage="true" label-width="auto" style="flex: 1 1 0%">
|
2024-06-30 21:35:50 +08:00
|
|
|
|
<el-row :gutter="10">
|
|
|
|
|
|
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
|
|
|
|
|
|
<el-form-item label="职位名称" prop="name">
|
2024-07-11 00:24:29 +08:00
|
|
|
|
<el-input v-model="state.queryParams.name" placeholder="职位名称" clearable @keyup.enter.native="handleQuery" />
|
2024-06-30 21:35:50 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col class="mb5" :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
|
|
|
|
|
|
<el-form-item label="职位编码" prop="code">
|
2024-07-11 00:24:29 +08:00
|
|
|
|
<el-input v-model="state.queryParams.code" placeholder="职位编码" clearable @keyup.enter.native="handleQuery" />
|
2024-06-30 21:35:50 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
<el-divider style="height: calc(100% - 5px); margin: 0 10px" direction="vertical" />
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col>
|
2024-06-15 13:02:35 +08:00
|
|
|
|
<el-button-group>
|
2024-07-22 02:54:41 +08:00
|
|
|
|
<el-button type="primary" icon="ele-Search" @click="handleQuery" v-auth="'sysPos/page'"> 查询 </el-button>
|
2024-06-15 13:02:35 +08:00
|
|
|
|
<el-button icon="ele-Refresh" @click="resetQuery"> 重置 </el-button>
|
|
|
|
|
|
</el-button-group>
|
2024-06-30 21:35:50 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
2024-06-15 13:02:35 +08:00
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
|
2024-07-11 00:24:29 +08:00
|
|
|
|
<vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" v-on="gridEvents">
|
2024-06-30 21:35:50 +08:00
|
|
|
|
<template #toolbar_buttons>
|
2024-07-22 02:54:41 +08:00
|
|
|
|
<el-button type="primary" icon="ele-Plus" @click="handleAdd" v-auth="'sysPos/add'"> 新增 </el-button>
|
2024-06-30 21:35:50 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<template #toolbar_tools> </template>
|
|
|
|
|
|
<template #empty>
|
|
|
|
|
|
<el-empty :image-size="200" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template #row_status="{ row }">
|
|
|
|
|
|
<el-tag v-if="row.status === 1" type="success">启用</el-tag>
|
|
|
|
|
|
<el-tag v-else type="danger">禁用</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template #row_record="{ row }">
|
|
|
|
|
|
<ModifyRecord :data="row" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template #row_buttons="{ row }">
|
2024-08-19 23:21:33 +08:00
|
|
|
|
<el-button icon="ele-Edit" text type="primary" v-auth="'sysPos/update'" @click="handleEdit(row)"> 编辑 </el-button>
|
|
|
|
|
|
<el-button icon="ele-Delete" text type="danger" v-auth="'sysPos/delete'" @click="handleDelete(row)"> 删除 </el-button>
|
|
|
|
|
|
<el-button icon="ele-CopyDocument" text type="primary" v-auth="'sysPos/add'" @click="openCopyMenu(row)"> 复制 </el-button>
|
2024-06-30 21:35:50 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</vxe-grid>
|
2024-06-15 13:02:35 +08:00
|
|
|
|
</el-card>
|
|
|
|
|
|
|
2024-08-30 12:36:39 +08:00
|
|
|
|
<EditPos ref="editPosRef" :title="state.title" @handleQuery="handleQuery" />
|
2024-06-15 13:02:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup name="sysPos">
|
|
|
|
|
|
import { onMounted, reactive, ref } from 'vue';
|
|
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
2024-07-11 00:24:29 +08:00
|
|
|
|
import { VxeGridInstance, VxeGridListeners, VxeGridPropTypes } from 'vxe-table';
|
|
|
|
|
|
import { useVxeTable } from '/@/hooks/useVxeTableOptionsHook';
|
|
|
|
|
|
import { Local } from '/@/utils/storage';
|
2024-06-30 21:35:50 +08:00
|
|
|
|
|
2024-06-15 13:02:35 +08:00
|
|
|
|
import EditPos from '/@/views/system/pos/component/editPos.vue';
|
|
|
|
|
|
import ModifyRecord from '/@/components/table/modifyRecord.vue';
|
|
|
|
|
|
|
|
|
|
|
|
import { getAPI } from '/@/utils/axios-utils';
|
|
|
|
|
|
import { SysPosApi } from '/@/api-services/api';
|
2024-08-19 23:21:33 +08:00
|
|
|
|
import { PagePosOutput, PagePosInput, UpdatePosInput } from '/@/api-services/models';
|
2024-06-15 13:02:35 +08:00
|
|
|
|
|
2024-06-30 21:35:50 +08:00
|
|
|
|
const xGrid = ref<VxeGridInstance>();
|
2024-06-15 13:02:35 +08:00
|
|
|
|
const editPosRef = ref<InstanceType<typeof EditPos>>();
|
|
|
|
|
|
const state = reactive({
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
name: undefined,
|
|
|
|
|
|
code: undefined,
|
|
|
|
|
|
},
|
2024-07-11 00:24:29 +08:00
|
|
|
|
localPageParam: {
|
|
|
|
|
|
pageSize: 50 as number,
|
|
|
|
|
|
defaultSort: { field: 'orderNo', order: 'asc', descStr: 'desc' },
|
2024-06-30 21:35:50 +08:00
|
|
|
|
},
|
|
|
|
|
|
visible: false,
|
|
|
|
|
|
title: '',
|
|
|
|
|
|
});
|
2024-07-01 00:26:53 +08:00
|
|
|
|
|
2024-07-11 00:24:29 +08:00
|
|
|
|
// 本地存储参数
|
|
|
|
|
|
const localPageParamKey = 'localPageParam:sysPos';
|
2024-07-06 00:56:24 +08:00
|
|
|
|
// 表格参数配置
|
2024-07-11 00:24:29 +08:00
|
|
|
|
const options = useVxeTable<PagePosOutput>(
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 'sysPos',
|
|
|
|
|
|
name: '职位',
|
|
|
|
|
|
columns: [
|
|
|
|
|
|
// { type: 'checkbox', width: 40, fixed: 'left' },
|
|
|
|
|
|
{ type: 'seq', title: '序号', width: 60, fixed: 'left' },
|
|
|
|
|
|
{ field: 'name', title: '职位名称', minWidth: 200, showOverflow: 'tooltip' },
|
|
|
|
|
|
{ field: 'code', title: '职位编码', minWidth: 200, showOverflow: 'tooltip' },
|
|
|
|
|
|
{ field: 'orderNo', title: '排序', width: 80, showOverflow: 'tooltip' },
|
|
|
|
|
|
{ field: 'status', title: '状态', width: 80, showOverflow: 'tooltip', slots: { default: 'row_status' } },
|
|
|
|
|
|
{ field: '', title: '修改记录', width: 100, showOverflow: 'tooltip', slots: { default: 'row_record' } },
|
2024-08-19 23:21:33 +08:00
|
|
|
|
{ title: '操作', fixed: 'right', width: 210, showOverflow: true, slots: { default: 'row_buttons' } },
|
2024-07-11 00:24:29 +08:00
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
// vxeGrid配置参数(此处可覆写任何参数),参考vxe-table官方文档
|
|
|
|
|
|
{
|
|
|
|
|
|
// 代理配置
|
|
|
|
|
|
proxyConfig: { autoLoad: true, ajax: { query: ({ page, sort }) => handleQueryApi(page, sort) } },
|
|
|
|
|
|
// 排序配置
|
|
|
|
|
|
sortConfig: { defaultSort: Local.get(localPageParamKey)?.defaultSort || state.localPageParam.defaultSort },
|
|
|
|
|
|
// 分页配置
|
|
|
|
|
|
pagerConfig: { pageSize: Local.get(localPageParamKey)?.pageSize || state.localPageParam.pageSize },
|
|
|
|
|
|
// 工具栏配置
|
|
|
|
|
|
toolbarConfig: { export: false },
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
2024-06-15 13:02:35 +08:00
|
|
|
|
|
2024-06-30 21:35:50 +08:00
|
|
|
|
// 页面初始化
|
2024-07-27 03:02:08 +08:00
|
|
|
|
onMounted(() => {
|
2024-07-11 00:24:29 +08:00
|
|
|
|
state.localPageParam = Local.get(localPageParamKey) || state.localPageParam;
|
2024-06-15 13:02:35 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
2024-07-11 00:24:29 +08:00
|
|
|
|
// 查询api
|
|
|
|
|
|
const handleQueryApi = async (page: VxeGridPropTypes.ProxyAjaxQueryPageParams, sort: VxeGridPropTypes.ProxyAjaxQuerySortCheckedParams) => {
|
|
|
|
|
|
const params = Object.assign(state.queryParams, { page: page.currentPage, pageSize: page.pageSize, field: sort.field, order: sort.order, descStr: 'desc' }) as PagePosInput;
|
|
|
|
|
|
return getAPI(SysPosApi).apiSysPosPagePost(params);
|
2024-06-30 21:35:50 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2024-07-11 00:24:29 +08:00
|
|
|
|
// 查询操作
|
|
|
|
|
|
const handleQuery = async () => {
|
|
|
|
|
|
// 调用vxe-grid的commitProxy(query)方法,触发表格重新加载数据
|
2024-07-16 16:07:57 +08:00
|
|
|
|
options.loading = true;
|
2024-07-11 00:24:29 +08:00
|
|
|
|
await xGrid.value?.commitProxy('query');
|
2024-07-16 16:07:57 +08:00
|
|
|
|
options.loading = false;
|
2024-06-15 13:02:35 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 重置操作
|
2024-07-11 00:24:29 +08:00
|
|
|
|
const resetQuery = async () => {
|
2024-06-15 13:02:35 +08:00
|
|
|
|
state.queryParams.code = undefined;
|
2024-06-30 21:35:50 +08:00
|
|
|
|
state.queryParams.name = undefined;
|
2024-07-11 00:24:29 +08:00
|
|
|
|
await xGrid.value?.commitProxy('reload');
|
2024-06-15 13:02:35 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 打开新增页面
|
2024-06-30 21:35:50 +08:00
|
|
|
|
const handleAdd = () => {
|
|
|
|
|
|
state.title = '添加职位';
|
2024-06-15 13:02:35 +08:00
|
|
|
|
editPosRef.value?.openDialog({ status: 1, orderNo: 100 });
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 打开编辑页面
|
2024-06-30 21:35:50 +08:00
|
|
|
|
const handleEdit = (row: any) => {
|
|
|
|
|
|
state.title = '编辑职位';
|
2024-06-15 13:02:35 +08:00
|
|
|
|
editPosRef.value?.openDialog(row);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-08-19 23:21:33 +08:00
|
|
|
|
// 打开复制页面
|
|
|
|
|
|
const openCopyMenu = (row: any) => {
|
|
|
|
|
|
state.title = '复制职位';
|
|
|
|
|
|
var copyRow = JSON.parse(JSON.stringify(row)) as UpdatePosInput;
|
|
|
|
|
|
copyRow.id = 0;
|
|
|
|
|
|
copyRow.name = '';
|
|
|
|
|
|
editPosRef.value?.openDialog(copyRow);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-06-15 13:02:35 +08:00
|
|
|
|
// 删除
|
2024-06-30 21:35:50 +08:00
|
|
|
|
const handleDelete = (row: any) => {
|
2024-06-15 13:02:35 +08:00
|
|
|
|
ElMessageBox.confirm(`确定删除职位:【${row.name}】?`, '提示', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
})
|
|
|
|
|
|
.then(async () => {
|
|
|
|
|
|
await getAPI(SysPosApi).apiSysPosDeletePost({ id: row.id });
|
|
|
|
|
|
handleQuery();
|
|
|
|
|
|
ElMessage.success('删除成功');
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
|
};
|
2024-07-11 00:24:29 +08:00
|
|
|
|
|
|
|
|
|
|
// 表格事件
|
|
|
|
|
|
const gridEvents: VxeGridListeners<PagePosOutput> = {
|
|
|
|
|
|
// 只对 pager-config 配置时有效,分页发生改变时会触发该事件
|
|
|
|
|
|
async pageChange({ pageSize }) {
|
|
|
|
|
|
state.localPageParam.pageSize = pageSize;
|
|
|
|
|
|
Local.set(localPageParamKey, state.localPageParam);
|
|
|
|
|
|
},
|
|
|
|
|
|
// 当排序条件发生变化时会触发该事件
|
|
|
|
|
|
async sortChange({ field, order }) {
|
|
|
|
|
|
state.localPageParam.defaultSort = { field: field, order: order!, descStr: 'desc' };
|
|
|
|
|
|
Local.set(localPageParamKey, state.localPageParam);
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
2024-06-15 13:02:35 +08:00
|
|
|
|
</script>
|