通知公告
parent
0ba451ee6d
commit
26fab5c858
|
|
@ -0,0 +1,59 @@
|
||||||
|
import request from '@/config/axios'
|
||||||
|
import type {Dayjs} from 'dayjs';
|
||||||
|
|
||||||
|
/** 通知公告信息 */
|
||||||
|
export interface Notice {
|
||||||
|
id: number; // 通知编号
|
||||||
|
title?: string; // 公告标题
|
||||||
|
content?: string; // 公告内容
|
||||||
|
publisher?: string; // 发布方
|
||||||
|
attachments?: string; // 附件URL列表
|
||||||
|
publishType?: number; // 发布类型(1-立即发布,2-定时发布)
|
||||||
|
publishTime?: string; // 发布时间(毫秒时间戳)
|
||||||
|
endType?: number; // 结束类型(1-长期有效,2-定时结束)
|
||||||
|
endTime?: string; // 结束时间(毫秒时间戳)
|
||||||
|
pushEnabled?: boolean; // 是否消息推送
|
||||||
|
status?: number; // 状态(0-草稿,1-已发布,2-已过期,3-已撤回)
|
||||||
|
viewCount?: number; // 浏览次数
|
||||||
|
communityIds?: number[]; // 小区ID列表(发布范围)
|
||||||
|
communityNames?: string[]; // 小区名称列表
|
||||||
|
createTime?: string; // 创建时间(毫秒时间戳)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 通知公告 API
|
||||||
|
export const NoticeApi = {
|
||||||
|
// 查询通知公告分页
|
||||||
|
getNoticePage: async (params: any) => {
|
||||||
|
return await request.get({ url: `/community/notice/page`, params })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 查询通知公告详情
|
||||||
|
getNotice: async (id: number) => {
|
||||||
|
return await request.get({ url: `/community/notice/get?id=` + id })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增通知公告
|
||||||
|
createNotice: async (data: Notice) => {
|
||||||
|
return await request.post({ url: `/community/notice/create`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 修改通知公告
|
||||||
|
updateNotice: async (data: Notice) => {
|
||||||
|
return await request.put({ url: `/community/notice/update`, data })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 删除通知公告
|
||||||
|
deleteNotice: async (id: number) => {
|
||||||
|
return await request.delete({ url: `/community/notice/delete?id=` + id })
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 批量删除通知公告 */
|
||||||
|
deleteNoticeList: async (ids: number[]) => {
|
||||||
|
return await request.delete({ url: `/community/notice/delete-list?ids=${ids.join(',')}` })
|
||||||
|
},
|
||||||
|
|
||||||
|
// 导出通知公告 Excel
|
||||||
|
exportNotice: async (params) => {
|
||||||
|
return await request.download({ url: `/community/notice/export-excel`, params })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -203,5 +203,8 @@ export enum DICT_TYPE {
|
||||||
COMM_RELATION_TYPE = 'comm_relation_type',
|
COMM_RELATION_TYPE = 'comm_relation_type',
|
||||||
COMM_ID_TYPE = 'comm_id_type',
|
COMM_ID_TYPE = 'comm_id_type',
|
||||||
COMM_BANNER_LOCATION = 'comm_banner_location',
|
COMM_BANNER_LOCATION = 'comm_banner_location',
|
||||||
COMM_MINI_APP_LOCATION = 'comm_mini_app_location'
|
COMM_MINI_APP_LOCATION = 'comm_mini_app_location',
|
||||||
|
COMM_NOTICE_PUBLISH_TYPE = 'comm_notice_publish_type',
|
||||||
|
COMM_NOTICE_END_TYPE = 'comm_notice_end_type',
|
||||||
|
COMM_NOTICE_STATUS = 'comm_notice_status',
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,230 @@
|
||||||
|
<template>
|
||||||
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="800px">
|
||||||
|
<el-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="formData"
|
||||||
|
:rules="formRules"
|
||||||
|
label-width="100px"
|
||||||
|
v-loading="formLoading"
|
||||||
|
>
|
||||||
|
<el-form-item label="公告标题" prop="title">
|
||||||
|
<el-input v-model="formData.title" placeholder="请输入公告标题" />
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="公告内容" prop="content">
|
||||||
|
<Editor v-model="formData.content" height="200px" />
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="发布方" prop="publisher">
|
||||||
|
<el-input v-model="formData.publisher" placeholder="请输入发布方" />
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="附件" prop="attachments">
|
||||||
|
<UploadFile v-model="formData.attachments" :file-type="['doc', 'docx', 'pdf', 'rar', 'zip']" :limit="5" />
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-divider content-position="left">
|
||||||
|
<el-icon><InfoFilled /></el-icon>
|
||||||
|
发布信息
|
||||||
|
</el-divider>
|
||||||
|
|
||||||
|
<el-form-item label="发布时间" prop="publishType">
|
||||||
|
<el-radio-group v-model="formData.publishType">
|
||||||
|
<el-radio :value="1">立即发布</el-radio>
|
||||||
|
<el-radio :value="2">定时发布</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
<el-date-picker
|
||||||
|
v-if="formData.publishType === 2"
|
||||||
|
v-model="formData.publishTime"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="选择发布时间"
|
||||||
|
value-format="x"
|
||||||
|
style="margin-left: 12px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="结束时间" prop="endType">
|
||||||
|
<el-radio-group v-model="formData.endType">
|
||||||
|
<el-radio :value="1">长期有效</el-radio>
|
||||||
|
<el-radio :value="2">定时结束</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
<el-date-picker
|
||||||
|
v-if="formData.endType === 2"
|
||||||
|
v-model="formData.endTime"
|
||||||
|
type="datetime"
|
||||||
|
placeholder="选择结束时间"
|
||||||
|
value-format="x"
|
||||||
|
style="margin-left: 12px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="发布范围" prop="communityIds">
|
||||||
|
<el-select
|
||||||
|
v-model="formData.communityIds"
|
||||||
|
placeholder="请选择小区"
|
||||||
|
clearable
|
||||||
|
filterable
|
||||||
|
multiple
|
||||||
|
collapse-tags
|
||||||
|
collapse-tags-tooltip
|
||||||
|
style="width: 100%"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="item in communityOptions"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.communityName"
|
||||||
|
:value="item.id"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="消息推送" prop="pushEnabled">
|
||||||
|
<el-switch v-model="formData.pushEnabled" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<template #footer>
|
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { getIntDictOptions, getBoolDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||||
|
import { NoticeApi, Notice } from '@/api/community/notice'
|
||||||
|
import { CommunityApi, CommunitySimpleVO } from '@/api/community/community'
|
||||||
|
import { InfoFilled } from '@element-plus/icons-vue'
|
||||||
|
|
||||||
|
/** 通知公告 表单 */
|
||||||
|
defineOptions({ name: 'NoticeForm' })
|
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
|
||||||
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||||
|
const dialogTitle = ref('') // 弹窗的标题
|
||||||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||||
|
const formData = ref({
|
||||||
|
id: undefined,
|
||||||
|
title: undefined,
|
||||||
|
content: undefined,
|
||||||
|
publisher: undefined,
|
||||||
|
attachments: undefined,
|
||||||
|
publishType: 1,
|
||||||
|
publishTime: undefined,
|
||||||
|
endType: 1,
|
||||||
|
endTime: undefined,
|
||||||
|
communityIds: [],
|
||||||
|
pushEnabled: true
|
||||||
|
})
|
||||||
|
const formRules = reactive({
|
||||||
|
title: [{ required: true, message: '公告标题不能为空', trigger: 'blur' }],
|
||||||
|
content: [{ required: true, message: '公告内容不能为空', trigger: 'blur' }],
|
||||||
|
publisher: [{ required: true, message: '发布方不能为空', trigger: 'blur' }],
|
||||||
|
publishType: [{ required: true, message: '发布类型不能为空', trigger: 'change' }],
|
||||||
|
endType: [{ required: true, message: '结束类型不能为空', trigger: 'change' }],
|
||||||
|
communityIds: [{ required: true, message: '请选择发布范围', trigger: 'change' }]
|
||||||
|
})
|
||||||
|
const formRef = ref() // 表单 Ref
|
||||||
|
const communityOptions = ref<CommunitySimpleVO[]>([]) // 小区选项列表
|
||||||
|
|
||||||
|
/** 加载小区列表 */
|
||||||
|
const loadCommunityList = async () => {
|
||||||
|
try {
|
||||||
|
communityOptions.value = await CommunityApi.getCommunitySimpleList()
|
||||||
|
} catch (error) {
|
||||||
|
console.error('加载小区列表失败:', error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const open = async (type: string, id?: number) => {
|
||||||
|
dialogVisible.value = true
|
||||||
|
dialogTitle.value = t('action.' + type)
|
||||||
|
formType.value = type
|
||||||
|
resetForm()
|
||||||
|
|
||||||
|
// 加载小区列表
|
||||||
|
await loadCommunityList()
|
||||||
|
|
||||||
|
// 修改时,设置数据
|
||||||
|
if (id) {
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
const data = await NoticeApi.getNotice(id)
|
||||||
|
formData.value = {
|
||||||
|
id: data.id,
|
||||||
|
title: data.title,
|
||||||
|
content: data.content,
|
||||||
|
publisher: data.publisher,
|
||||||
|
attachments: data.attachments,
|
||||||
|
publishType: data.publishType || 1,
|
||||||
|
publishTime: data.publishTime,
|
||||||
|
endType: data.endType || 1,
|
||||||
|
endTime: data.endTime,
|
||||||
|
communityIds: Array.isArray(data.communityIds) ? data.communityIds : [],
|
||||||
|
pushEnabled: data.pushEnabled !== undefined ? data.pushEnabled : true
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||||
|
|
||||||
|
/** 提交表单 */
|
||||||
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||||
|
const submitForm = async () => {
|
||||||
|
// 校验表单
|
||||||
|
await formRef.value.validate()
|
||||||
|
// 提交请求
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
const data = {
|
||||||
|
id: formData.value.id,
|
||||||
|
title: formData.value.title,
|
||||||
|
content: formData.value.content,
|
||||||
|
publisher: formData.value.publisher,
|
||||||
|
attachments: formData.value.attachments,
|
||||||
|
publishType: formData.value.publishType,
|
||||||
|
publishTime: formData.value.publishType === 1 ? undefined : formData.value.publishTime,
|
||||||
|
endType: formData.value.endType,
|
||||||
|
endTime: formData.value.endType === 1 ? undefined : formData.value.endTime,
|
||||||
|
communityIds: formData.value.communityIds,
|
||||||
|
pushEnabled: formData.value.pushEnabled
|
||||||
|
} as unknown as Notice
|
||||||
|
if (formType.value === 'create') {
|
||||||
|
await NoticeApi.createNotice(data)
|
||||||
|
message.success(t('common.createSuccess'))
|
||||||
|
} else {
|
||||||
|
await NoticeApi.updateNotice(data)
|
||||||
|
message.success(t('common.updateSuccess'))
|
||||||
|
}
|
||||||
|
dialogVisible.value = false
|
||||||
|
// 发送操作成功的事件
|
||||||
|
emit('success')
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置表单 */
|
||||||
|
const resetForm = () => {
|
||||||
|
formData.value = {
|
||||||
|
id: undefined,
|
||||||
|
title: undefined,
|
||||||
|
content: undefined,
|
||||||
|
publisher: undefined,
|
||||||
|
attachments: undefined,
|
||||||
|
publishType: 1,
|
||||||
|
publishTime: undefined,
|
||||||
|
endType: 1,
|
||||||
|
endTime: undefined,
|
||||||
|
communityIds: [],
|
||||||
|
pushEnabled: true
|
||||||
|
}
|
||||||
|
formRef.value?.resetFields()
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
@ -0,0 +1,326 @@
|
||||||
|
<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>
|
||||||
Loading…
Reference in New Issue