UNIVPLMDataIntegration/Web/src/views/home/notice/index.vue

148 lines
5.3 KiB
Vue
Raw Normal View History

2024-06-15 13:02:35 +08:00
<template>
<div class="notice-container">
<el-card shadow="hover" :body-style="{ paddingBottom: '0' }">
<el-form :model="state.queryParams" ref="queryForm" :inline="true">
<el-form-item label="标题">
<el-input v-model="state.queryParams.title" placeholder="标题" clearable />
</el-form-item>
<el-form-item label="类型">
<el-select v-model="state.queryParams.type" placeholder="类型" clearable>
<el-option label="通知" :value="1" />
<el-option label="公告" :value="2" />
</el-select>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="ele-Search" @click="handleQuery"> 查询 </el-button>
<el-button icon="ele-Refresh" @click="resetQuery"> 重置 </el-button>
</el-button-group>
</el-form-item>
</el-form>
</el-card>
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
<el-table :data="state.noticeData" style="width: 100%" v-loading="state.loading" border :row-class-name="tableRowClassName">
<el-table-column type="index" label="序号" width="55" align="center" />
<el-table-column prop="sysNotice.title" label="标题" header-align="center" show-overflow-tooltip />
<el-table-column prop="sysNotice.content" label="内容" header-align="center" show-overflow-tooltip>
<template #default="scope"> {{ removeHtml(scope.row.sysNotice.content) }} </template>
</el-table-column>
<el-table-column prop="sysNotice.type" label="类型" width="100" align="center" show-overflow-tooltip>
<template #default="scope">
<el-tag v-if="scope.row.sysNotice.type === 1"> 通知 </el-tag>
<el-tag type="warning" v-else> 公告 </el-tag>
</template>
</el-table-column>
<el-table-column prop="sysNotice.createTime" label="创建时间" align="center" show-overflow-tooltip />
<el-table-column prop="readStatus" label="阅读状态" width="100" align="center" show-overflow-tooltip>
<template #default="scope">
<el-tag type="info" v-if="scope.row.readStatus === 1"> 已读 </el-tag>
<el-tag type="danger" v-else> 未读 </el-tag>
</template>
</el-table-column>
<el-table-column prop="sysNotice.publicUserName" label="发布者" align="center" show-overflow-tooltip />
<el-table-column prop="sysNotice.publicTime" label="发布时间" align="center" show-overflow-tooltip />
<el-table-column label="操作" width="80" fixed="right" align="center" show-overflow-tooltip>
<template #default="scope">
<el-button icon="ele-InfoFilled" size="small" text type="primary" @click="viewDetail(scope.row)"> 详情 </el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
v-model:currentPage="state.tableParams.page"
v-model:page-size="state.tableParams.pageSize"
:total="state.tableParams.total"
:page-sizes="[10, 20, 50, 100]"
small
background
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
layout="total, sizes, prev, pager, next, jumper"
/>
</el-card>
<el-dialog v-model="state.dialogVisible" title="消息详情" draggable width="769px">
<p v-html="state.content"></p>
<template #footer>
<span class="dialog-footer">
<el-button type="primary" @click="state.dialogVisible = false">确认</el-button>
</span>
</template>
</el-dialog>
</div>
</template>
<script setup lang="ts" name="notice">
import { onMounted, reactive } from 'vue';
import commonFunction from '/@/utils/commonFunction';
import { getAPI } from '/@/utils/axios-utils';
import { SysNoticeApi } from '/@/api-services/api';
import { SysNoticeUser } from '/@/api-services/models';
const { removeHtml } = commonFunction();
const state = reactive({
loading: false,
noticeData: [] as Array<SysNoticeUser>,
queryParams: {
title: undefined,
type: undefined,
},
tableParams: {
page: 1,
pageSize: 20,
total: 0 as any,
},
editNoticeTitle: '',
dialogVisible: false,
content: '',
});
onMounted(async () => {
handleQuery();
});
// 查询操作
const handleQuery = async () => {
state.loading = true;
var res = await getAPI(SysNoticeApi).apiSysNoticePageReceivedGet(state.queryParams.title, state.queryParams.type, state.tableParams.page, state.tableParams.pageSize);
state.noticeData = res.data.result?.items ?? [];
state.tableParams.total = res.data.result?.total;
state.loading = false;
};
// 重置操作
const resetQuery = () => {
state.queryParams.title = undefined;
state.queryParams.type = undefined;
handleQuery();
};
// 改变页面容量
const handleSizeChange = (val: number) => {
state.tableParams.pageSize = val;
handleQuery();
};
// 改变页码序号
const handleCurrentChange = (val: number) => {
state.tableParams.page = val;
handleQuery();
};
// 查看详情
const viewDetail = async (row: any) => {
state.content = row.sysNotice.content;
state.dialogVisible = true;
row.readStatus = 1;
// mittBus.emit('noticeRead', row.sysNotice.id);
await getAPI(SysNoticeApi).apiSysNoticeSetReadPost({ id: row.sysNotice.id });
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const tableRowClassName = ({ row, rowIndex }: { row: SysNoticeUser; rowIndex: number }) => {
return row.readStatus === 1 ? 'info-row' : '';
};
</script>
<style lang="scss">
// .el-table .info-row {
// --el-table-tr-bg-color: var(--el-color-info-light-9);
// }
</style>