fjrcloud-community-ui/src/views/community/notice/index.vue

327 lines
9.1 KiB
Vue

<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="80px"
>
<el-form-item label="公告标题" prop="title">
<el-input
v-model="queryParams.title"
placeholder="请输入公告标题"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item label="发布类型" prop="publishType">
<el-select
v-model="queryParams.publishType"
placeholder="请选择发布类型"
clearable
class="!w-240px"
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.COMM_NOTICE_PUBLISH_TYPE)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="发布时间" prop="publishTime">
<el-date-picker
v-model="queryParams.publishTime"
value-format="YYYY-MM-DD HH:mm:ss"
type="daterange"
start-placeholder="开始日期"
end-placeholder="结束日期"
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
class="!w-240px"
/>
</el-form-item>
<el-form-item label="发布范围" prop="communityId">
<el-select
v-model="queryParams.communityId"
placeholder="请选择小区"
clearable
filterable
class="!w-240px"
>
<el-option
v-for="item in communityOptions"
:key="item.id"
:label="item.communityName"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleQuery">
<Icon icon="ep:search" class="mr-5px" /> 查询
</el-button>
<el-button @click="resetQuery">
<Icon icon="ep:refresh" class="mr-5px" /> 重置
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 操作按钮栏 -->
<ContentWrap>
<div class="mb-15px">
<el-button
type="primary"
plain
@click="openForm('create')"
v-hasPermi="['community:notice:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> 新建
</el-button>
<el-button
type="primary"
plain
@click="handleExport"
:loading="exportLoading"
v-hasPermi="['community:notice:export']"
>
<Icon icon="ep:download" class="mr-5px" /> 导出
</el-button>
<el-button
type="primary"
plain
@click="handleImport"
v-hasPermi="['community:notice:import']"
>
<Icon icon="ep:upload" class="mr-5px" /> 导入
</el-button>
</div>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-table
row-key="id"
v-loading="loading"
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
@selection-change="handleRowCheckboxChange"
:header-cell-style="{
background: '#1890ff',
color: '#ffffff',
textAlign: 'center',
fontWeight: 'normal',
fontSize: '14px',
borderColor: '#1890ff'
}"
:cell-style="{
textAlign: 'center',
fontSize: '14px',
color: '#333333',
borderColor: '#ebeef5'
}"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" align="center" type="index" width="80" />
<el-table-column label="公告标题" align="center" prop="title" min-width="200" show-overflow-tooltip />
<el-table-column label="发布方" align="center" prop="publisher" width="120" />
<el-table-column label="发布类型" align="center" prop="publishType" width="120">
<template #default="scope">
<dict-tag :type="DICT_TYPE.COMM_NOTICE_PUBLISH_TYPE" :value="scope.row.publishType" />
</template>
</el-table-column>
<el-table-column
label="发布时间"
align="center"
prop="publishTime"
:formatter="dateFormatter"
width="180px"
/>
<el-table-column label="结束时间类型" align="center" prop="endType" width="120">
<template #default="scope">
<dict-tag :type="DICT_TYPE.COMM_NOTICE_END_TYPE" :value="scope.row.endType" />
</template>
</el-table-column>
<el-table-column
label="结束时间"
align="center"
prop="endTime"
:formatter="dateFormatter"
width="180px"
/>
<el-table-column label="发布范围" align="center" prop="communityNames" min-width="200" show-overflow-tooltip>
<template #default="scope">
{{ scope.row.communityNames ? scope.row.communityNames.join(' / ') : '-' }}
</template>
</el-table-column>
<el-table-column label="消息推送" align="center" prop="pushEnabled" width="100">
<template #default="scope">
<el-switch v-model="scope.row.pushEnabled" disabled />
</template>
</el-table-column>
<el-table-column label="操作" align="center" min-width="120px" fixed="right">
<template #default="scope">
<el-button
link
type="primary"
@click="openForm('update', scope.row.id)"
v-hasPermi="['community:notice:update']"
>
编辑
</el-button>
<el-button
link
type="danger"
@click="handleDelete(scope.row.id)"
v-hasPermi="['community:notice:delete']"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
<!-- 表单弹窗:添加/修改 -->
<NoticeForm ref="formRef" @success="getList" />
</template>
<script setup lang="ts">
import { getIntDictOptions, getBoolDictOptions, DICT_TYPE } from '@/utils/dict'
import { isEmpty } from '@/utils/is'
import { dateFormatter } from '@/utils/formatTime'
import download from '@/utils/download'
import { NoticeApi, Notice } from '@/api/community/notice'
import { CommunityApi, CommunitySimpleVO } from '@/api/community/community'
import NoticeForm from './NoticeForm.vue'
/** */
defineOptions({ name: 'CommunityNotice' })
const message = useMessage() //
const { t } = useI18n() //
const loading = ref(true) //
const list = ref<Notice[]>([]) // 列表的数据
const total = ref(0) // 列表的总页数
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
title: undefined,
publishType: undefined,
publishTime: [],
communityId: undefined
})
const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中
const communityOptions = ref<CommunitySimpleVO[]>([]) // 小区选项列表
/** 加载小区列表 */
const loadCommunityList = async () => {
try {
communityOptions.value = await CommunityApi.getCommunitySimpleList()
} catch (error) {
console.error('加载小区列表失败:', error)
}
}
/** 查询列表 */
const getList = async () => {
loading.value = true
try {
const data = await NoticeApi.getNoticePage(queryParams)
list.value = data.list
total.value = data.total
} finally {
loading.value = false
}
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value.resetFields()
handleQuery()
}
/** 添加/修改操作 */
const formRef = ref()
const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
/** 导入操作 */
const importFormRef = ref()
const handleImport = () => {
importFormRef.value.open()
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await NoticeApi.deleteNotice(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
} catch {}
}
/** 批量删除通知公告 */
const handleDeleteBatch = async () => {
try {
// 删除的二次确认
await message.delConfirm()
await NoticeApi.deleteNoticeList(checkedIds.value);
checkedIds.value = [];
message.success(t('common.delSuccess'))
await getList();
} catch {}
}
const checkedIds = ref<number[]>([])
const handleRowCheckboxChange = (records: Notice[]) => {
checkedIds.value = records.map((item) => item.id!);
}
/** 导出按钮操作 */
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await NoticeApi.exportNotice(queryParams)
download.excel(data, '通知公告.xls')
} catch {
} finally {
exportLoading.value = false
}
}
/** 初始化 **/
onMounted(() => {
loadCommunityList()
getList()
})
</script>