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

334 lines
9.6 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="postType">
<el-select
v-model="queryParams.postType"
placeholder="请选择动态类型"
clearable
class="!w-240px"
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.COMM_POST_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:post:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> 新建
</el-button>
<el-button
type="primary"
plain
@click="handleExport"
:loading="exportLoading"
v-hasPermi="['community:post:export']"
>
<Icon icon="ep:download" 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="coverImage" width="120">
<template #default="scope">
<el-image
v-if="scope.row.coverImage"
:src="scope.row.coverImage"
fit="cover"
style="width: 60px; height: 60px; border-radius: 4px; cursor: pointer"
@click="handlePreviewImage(scope.row.coverImage)"
/>
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column label="动态标题" align="center" prop="title" min-width="200" show-overflow-tooltip />
<el-table-column label="发布方" align="center" prop="author" width="120" />
<el-table-column label="动态类型" align="center" prop="postType" width="120">
<template #default="scope">
<dict-tag :type="DICT_TYPE.COMM_POST_TYPE" :value="scope.row.postType" />
</template>
</el-table-column>
<el-table-column label="发布类型" align="center" prop="publishType" width="120">
<template #default="scope">
<dict-tag :type="DICT_TYPE.COMM_POST_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_POST_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:post:update']"
>
编辑
</el-button>
<el-button
link
type="danger"
@click="handleDelete(scope.row.id)"
v-hasPermi="['community:post: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>
<!-- 表单弹窗:添加/修改 -->
<CommunityPostForm ref="formRef" @success="getList" />
</template>
<script setup lang="ts">
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import download from '@/utils/download'
import { CommunityPostApi, CommunityPost } from '@/api/community/post'
import { CommunityApi, CommunitySimpleVO } from '@/api/community/community'
import CommunityPostForm from './CommunityPostForm.vue'
import { createImageViewer } from '@/components/ImageViewer'
/** */
defineOptions({ name: 'CommunityPost' })
const message = useMessage() //
const { t } = useI18n() //
const loading = ref(true) //
const list = ref<CommunityPost[]>([]) // 列表的数据
const total = ref(0) // 列表的总页数
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
title: undefined,
postType: 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 CommunityPostApi.getCommunityPostPage(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 handleDelete = async (id: number) => {
try {
await message.delConfirm()
await CommunityPostApi.deleteCommunityPost(id)
message.success(t('common.delSuccess'))
await getList()
} catch {}
}
/** 批量删除社区动态 */
const handleDeleteBatch = async () => {
try {
await message.delConfirm()
await CommunityPostApi.deleteCommunityPostList(checkedIds.value)
checkedIds.value = []
message.success(t('common.delSuccess'))
await getList()
} catch {}
}
const checkedIds = ref<number[]>([])
const handleRowCheckboxChange = (records: CommunityPost[]) => {
checkedIds.value = records.map((item) => item.id!)
}
/** 导出按钮操作 */
const handleExport = async () => {
try {
await message.exportConfirm()
exportLoading.value = true
const data = await CommunityPostApi.exportCommunityPost(queryParams)
download.excel(data, '社区动态.xls')
} catch {
} finally {
exportLoading.value = false
}
}
/** 预览图片 */
const handlePreviewImage = (url: string) => {
createImageViewer({
urlList: [url],
zIndex: 3000,
hideOnClickModal: true,
teleported: true
})
}
/** 初始化 **/
onMounted(() => {
loadCommunityList()
getList()
})
</script>