😎调整站内信页面

This commit is contained in:
zuohuaijun 2024-07-27 03:31:44 +08:00
parent 462f5814c2
commit 8e78638763

View File

@ -32,7 +32,7 @@
</el-card> </el-card>
<el-card class="full-table" shadow="hover" style="margin-top: 5px"> <el-card class="full-table" shadow="hover" style="margin-top: 5px">
<vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" @cell-dblclick="({ row }: any) => handleView(row)" @sort-change="sortChange"> <vxe-grid ref="xGrid" class="xGrid-style" v-bind="options" v-on="gridEvents" @cell-dblclick="({ row }: any) => handleView(row)">
<template #toolbar_buttons> </template> <template #toolbar_buttons> </template>
<template #toolbar_tools> </template> <template #toolbar_tools> </template>
<template #empty> <template #empty>
@ -51,15 +51,6 @@
<el-button icon="ele-InfoFilled" text type="primary" @click="handleView(row)"> </el-button> <el-button icon="ele-InfoFilled" text type="primary" @click="handleView(row)"> </el-button>
</el-tooltip> </el-tooltip>
</template> </template>
<template #pager>
<vxe-pager
:loading="options.loading"
v-model:current-page="state.tableParams.page"
v-model:page-size="state.tableParams.pageSize"
:total="state.tableParams.total"
@page-change="pageChange"
/>
</template>
</vxe-grid> </vxe-grid>
</el-card> </el-card>
@ -86,12 +77,13 @@
import { onMounted, reactive, ref } from 'vue'; import { onMounted, reactive, ref } from 'vue';
import commonFunction from '/@/utils/commonFunction'; import commonFunction from '/@/utils/commonFunction';
import '@wangeditor/editor/dist/css/style.css'; import '@wangeditor/editor/dist/css/style.css';
import { VxeGridInstance, VxePagerEvents, VxePagerDefines } from 'vxe-table'; import { VxeGridInstance, VxeGridListeners, VxeGridPropTypes } from 'vxe-table';
import { useVxeTable } from '/@/hooks/vxeTableOptionsHook'; import { useVxeTable } from '/@/hooks/useVxeTableOptionsHook';
import { Local } from '/@/utils/storage';
import { getAPI } from '/@/utils/axios-utils'; import { getAPI } from '/@/utils/axios-utils';
import { SysNoticeApi } from '/@/api-services/api'; import { SysNoticeApi } from '/@/api-services/api';
import { SysNoticeUser } from '/@/api-services/models'; import { SysNoticeUser, PageNoticeInput } from '/@/api-services/models';
const xGrid = ref<VxeGridInstance>(); const xGrid = ref<VxeGridInstance>();
const { removeHtml } = commonFunction(); const { removeHtml } = commonFunction();
@ -100,23 +92,22 @@ const state = reactive({
title: undefined, title: undefined,
type: undefined, type: undefined,
}, },
tableParams: { localPageParam: {
page: 1, pageSize: 50 as number,
pageSize: 50, defaultSort: { field: 'id', order: 'asc', descStr: 'desc' },
field: 'id', //
order: 'desc', //
descStr: 'desc', //
total: 0 as any,
}, },
isShowDialog: false, isShowDialog: false,
title: '', title: '',
content: '', content: '',
}); });
//
const localPageParamKey = 'localPageParam:sysNoticeUser';
// //
const options = useVxeTable<SysNoticeUser>({ const options = useVxeTable<SysNoticeUser>(
{
id: 'sysNoticeUser', id: 'sysNoticeUser',
name: '消息', name: '消息/站内信',
columns: [ columns: [
// { type: 'checkbox', width: 40, fixed: 'left' }, // { type: 'checkbox', width: 40, fixed: 'left' },
{ type: 'seq', title: '序号', width: 60, fixed: 'left' }, { type: 'seq', title: '序号', width: 60, fixed: 'left' },
@ -129,50 +120,44 @@ const options = useVxeTable<SysNoticeUser>({
{ field: 'sysNotice.publicTime', title: '发布时间', minWidth: 150, showOverflow: 'tooltip' }, { field: 'sysNotice.publicTime', title: '发布时间', minWidth: 150, showOverflow: 'tooltip' },
{ title: '操作', fixed: 'right', width: 100, showOverflow: true, slots: { default: 'row_buttons' } }, { title: '操作', fixed: 'right', width: 100, showOverflow: true, slots: { default: 'row_buttons' } },
], ],
searchCallback: () => handleQuery(), },
queryAllCallback: () => fetchData({ pageSize: 99999 }), // 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 },
}
);
// //
onMounted(async () => { onMounted(() => {
await handleQuery(); state.localPageParam = Local.get(localPageParamKey) || state.localPageParam;
}); });
// // api
const handleQuery = async (reset = false) => { const handleQueryApi = async (page: VxeGridPropTypes.ProxyAjaxQueryPageParams, sort: VxeGridPropTypes.ProxyAjaxQuerySortCheckedParams) => {
options.loading = true; const params = Object.assign(state.queryParams, { page: page.currentPage, pageSize: page.pageSize, field: sort.field, order: sort.order, descStr: 'desc' }) as PageNoticeInput;
if (reset) state.tableParams.page = 1;
var res = await fetchData(null);
xGrid.value?.loadData(res.data.result?.items ?? []);
state.tableParams.total = res.data.result?.total;
options.loading = false;
};
//
const fetchData = async (tableParams: any) => {
let params = Object.assign(state.queryParams, state.tableParams, tableParams);
return getAPI(SysNoticeApi).apiSysNoticePageReceivedGet(params); return getAPI(SysNoticeApi).apiSysNoticePageReceivedGet(params);
}; };
//
const handleQuery = async () => {
// vxe-gridcommitProxy(query)
options.loading = true;
await xGrid.value?.commitProxy('query');
options.loading = false;
};
// //
const resetQuery = () => { const resetQuery = async () => {
state.queryParams.title = undefined; state.queryParams.title = undefined;
state.queryParams.type = undefined; state.queryParams.type = undefined;
handleQuery(true); await xGrid.value?.commitProxy('reload');
};
//
const pageChange: VxePagerEvents.PageChange = ({ currentPage, pageSize }: VxePagerDefines.PageChangeEventParams) => {
state.tableParams.page = currentPage;
state.tableParams.pageSize = pageSize;
handleQuery();
};
//
const sortChange = (options: any) => {
state.tableParams.field = options.field;
state.tableParams.order = options.order;
handleQuery();
}; };
// //
@ -183,6 +168,20 @@ const handleView = async (row: any) => {
// mittBus.emit('noticeRead', row.sysNotice.id); // mittBus.emit('noticeRead', row.sysNotice.id);
await getAPI(SysNoticeApi).apiSysNoticeSetReadPost({ id: row.sysNotice.id }); await getAPI(SysNoticeApi).apiSysNoticeSetReadPost({ id: row.sysNotice.id });
}; };
//
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);
},
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>