|
@@ -1,126 +1,196 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <a-card :bordered="false">
|
|
|
|
|
- <s-table
|
|
|
|
|
- ref="table"
|
|
|
|
|
- :columns="columns"
|
|
|
|
|
- :data="loadData"
|
|
|
|
|
- :alert="options.alert.show"
|
|
|
|
|
- bordered
|
|
|
|
|
- :row-key="(record) => record.reportId"
|
|
|
|
|
- :tool-config="toolConfig"
|
|
|
|
|
- :row-selection="options.rowSelection"
|
|
|
|
|
- >
|
|
|
|
|
- <template #operator class="table-operator">
|
|
|
|
|
- <a-space>
|
|
|
|
|
- <a-button type="primary" @click="formRef.onOpen()" v-if="hasPerm('forumReportInfoAdd')">
|
|
|
|
|
- <template #icon><plus-outlined /></template>
|
|
|
|
|
- 新增
|
|
|
|
|
- </a-button>
|
|
|
|
|
- <xn-batch-delete
|
|
|
|
|
- v-if="hasPerm('forumReportInfoBatchDelete')"
|
|
|
|
|
- :selectedRowKeys="selectedRowKeys"
|
|
|
|
|
- @batchDelete="deleteBatchForumReportInfo"
|
|
|
|
|
- />
|
|
|
|
|
- </a-space>
|
|
|
|
|
- </template>
|
|
|
|
|
- <template #bodyCell="{ column, record }">
|
|
|
|
|
- <template v-if="column.dataIndex === 'action'">
|
|
|
|
|
- <a-space>
|
|
|
|
|
- <a @click="formRef.onOpen(record)" v-if="hasPerm('forumReportInfoEdit')">编辑</a>
|
|
|
|
|
- <a-divider type="vertical" v-if="hasPerm(['forumReportInfoEdit', 'forumReportInfoDelete'], 'and')" />
|
|
|
|
|
- <a-popconfirm title="确定要删除吗?" @confirm="deleteForumReportInfo(record)">
|
|
|
|
|
- <a-button type="link" danger size="small" v-if="hasPerm('forumReportInfoDelete')">删除</a-button>
|
|
|
|
|
- </a-popconfirm>
|
|
|
|
|
- </a-space>
|
|
|
|
|
- </template>
|
|
|
|
|
- </template>
|
|
|
|
|
- </s-table>
|
|
|
|
|
- </a-card>
|
|
|
|
|
- <Form ref="formRef" @successful="table.refresh(true)" />
|
|
|
|
|
|
|
+ <a-card :bordered="false">
|
|
|
|
|
+ <s-table
|
|
|
|
|
+ ref="table"
|
|
|
|
|
+ :columns="columns"
|
|
|
|
|
+ :data="loadData"
|
|
|
|
|
+ :alert="options.alert.show"
|
|
|
|
|
+ bordered
|
|
|
|
|
+ :row-key="(record) => record.reportId"
|
|
|
|
|
+ :tool-config="toolConfig"
|
|
|
|
|
+ :row-selection="options.rowSelection"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template #operator class="table-operator">
|
|
|
|
|
+ <a-space>
|
|
|
|
|
+ <a-button type="primary" @click="formRef.onOpen()" v-if="hasPerm('forumReportInfoAdd')">
|
|
|
|
|
+ <template #icon><plus-outlined /></template>
|
|
|
|
|
+ 新增
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <xn-batch-delete
|
|
|
|
|
+ v-if="hasPerm('forumReportInfoBatchDelete')"
|
|
|
|
|
+ :selectedRowKeys="selectedRowKeys"
|
|
|
|
|
+ @batchDelete="deleteBatchForumReportInfo"
|
|
|
|
|
+ />
|
|
|
|
|
+ </a-space>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #bodyCell="{ column, record }">
|
|
|
|
|
+ <template v-if="column.dataIndex === 'action'">
|
|
|
|
|
+ <a-space>
|
|
|
|
|
+ <a @click="formRef.onOpen(record)" v-if="hasPerm('forumReportInfoEdit')">编辑</a>
|
|
|
|
|
+ <a-divider type="vertical" v-if="hasPerm(['forumReportInfoEdit', 'forumReportInfoDelete'], 'and')" />
|
|
|
|
|
+ <a-popconfirm title="确定要删除吗?" @confirm="deleteForumReportInfo(record)">
|
|
|
|
|
+ <a-button type="link" danger size="small" v-if="hasPerm('forumReportInfoDelete')">删除</a-button>
|
|
|
|
|
+ </a-popconfirm>
|
|
|
|
|
+ <a-divider type="vertical" v-if="hasPerm(['forumReportInfoDelete', 'forumReportInfoAudit'], 'and')" />
|
|
|
|
|
+ <a @click="showModal(record)" v-if="hasPerm('forumReportInfoAudit')">审核</a>
|
|
|
|
|
+ </a-space>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-if="column.dataIndex === 'reportReasonType'">
|
|
|
|
|
+ <div v-if="record.reportReasonType == 0">垃圾广告</div>
|
|
|
|
|
+ <div v-if="record.reportReasonType == 1">色情内容</div>
|
|
|
|
|
+ <div v-if="record.reportReasonType == 2">人身攻击</div>
|
|
|
|
|
+ <div v-if="record.reportReasonType == 3">政治敏感</div>
|
|
|
|
|
+ <div v-if="record.reportReasonType == 4">其他</div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-if="column.dataIndex === 'reportStatus'">
|
|
|
|
|
+ <div v-if="record.reportStatus == 0">待处理</div>
|
|
|
|
|
+ <div v-if="record.reportStatus == 1">已关闭帖子</div>
|
|
|
|
|
+ <div v-if="record.reportStatus == 2">已驳回</div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template v-if="column.dataIndex === 'postType'">
|
|
|
|
|
+ <div v-if="record.postType == 0">普通帖子</div>
|
|
|
|
|
+ <div v-if="record.postType == 1">技术支持</div>
|
|
|
|
|
+ <div v-if="record.postType == 2">内容纠错</div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </s-table>
|
|
|
|
|
+ </a-card>
|
|
|
|
|
+ <Form ref="formRef" @successful="table.refresh(true)" />
|
|
|
|
|
+ <a-modal v-model:visible="openAudit" title="审核" @ok="auditFun">
|
|
|
|
|
+ <a-select
|
|
|
|
|
+ v-model:value="reportStatus"
|
|
|
|
|
+ placeholder="请选择"
|
|
|
|
|
+ style="width: 100%"
|
|
|
|
|
+ :options="statusType"
|
|
|
|
|
+ ></a-select>
|
|
|
|
|
+ </a-modal>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="reportinfo">
|
|
<script setup name="reportinfo">
|
|
|
- import Form from './form.vue'
|
|
|
|
|
- import forumReportInfoApi from '@/api/forum/forumReportInfoApi'
|
|
|
|
|
- const table = ref()
|
|
|
|
|
- const formRef = ref()
|
|
|
|
|
- const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
|
|
|
|
|
- const columns = [
|
|
|
|
|
- {
|
|
|
|
|
- title: '帖子主键id',
|
|
|
|
|
- dataIndex: 'postId'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- title: '举报人用户id',
|
|
|
|
|
- dataIndex: 'userId'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- title: '举报原因类型 0垃圾广告 1色情内容 2人身攻击 3政治敏感 4其他',
|
|
|
|
|
- dataIndex: 'reportReasonType'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- title: '举报信息描述',
|
|
|
|
|
- dataIndex: 'reportDetail'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- title: '证据图片',
|
|
|
|
|
- dataIndex: 'evidenceScreenshot'
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- title: '举报处理状态 0待处理 1已关闭帖子 2已驳回',
|
|
|
|
|
- dataIndex: 'reportStatus'
|
|
|
|
|
- },
|
|
|
|
|
- ]
|
|
|
|
|
- // 操作栏通过权限判断是否显示
|
|
|
|
|
- if (hasPerm(['forumReportInfoEdit', 'forumReportInfoDelete'])) {
|
|
|
|
|
- columns.push({
|
|
|
|
|
- title: '操作',
|
|
|
|
|
- dataIndex: 'action',
|
|
|
|
|
- align: 'center',
|
|
|
|
|
- width: '150px'
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
- const selectedRowKeys = ref([])
|
|
|
|
|
- // 列表选择配置
|
|
|
|
|
- const options = {
|
|
|
|
|
- // columns数字类型字段加入 needTotal: true 可以勾选自动算账
|
|
|
|
|
- alert: {
|
|
|
|
|
- show: true,
|
|
|
|
|
- clear: () => {
|
|
|
|
|
- selectedRowKeys.value = ref([])
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- rowSelection: {
|
|
|
|
|
- onChange: (selectedRowKey, selectedRows) => {
|
|
|
|
|
- selectedRowKeys.value = selectedRowKey
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ import Form from './form.vue'
|
|
|
|
|
+ import forumReportInfoApi from '@/api/forum/forumReportInfoApi'
|
|
|
|
|
+ import forumApi from '@/api/forum/forumApi'
|
|
|
|
|
+ import { message } from 'ant-design-vue';
|
|
|
|
|
+ const table = ref()
|
|
|
|
|
+ const formRef = ref()
|
|
|
|
|
+ const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
|
|
|
|
|
+ const columns = [
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '帖子',
|
|
|
|
|
+ dataIndex: 'postTitle'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '帖子类型',
|
|
|
|
|
+ dataIndex: 'postType'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '帖子状态',
|
|
|
|
|
+ dataIndex: 'postStatus'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '举报人',
|
|
|
|
|
+ dataIndex: 'userNickname'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '举报原因类型',
|
|
|
|
|
+ dataIndex: 'reportReasonType'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '举报信息描述',
|
|
|
|
|
+ dataIndex: 'reportDetail'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '证据图片',
|
|
|
|
|
+ dataIndex: 'evidenceScreenshot'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '举报处理状态',
|
|
|
|
|
+ dataIndex: 'reportStatus'
|
|
|
|
|
+ }
|
|
|
|
|
+ ]
|
|
|
|
|
+ // 操作栏通过权限判断是否显示
|
|
|
|
|
+ if (hasPerm(['forumReportInfoEdit', 'forumReportInfoDelete'])) {
|
|
|
|
|
+ columns.push({
|
|
|
|
|
+ title: '操作',
|
|
|
|
|
+ dataIndex: 'action',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '200px'
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ const selectedRowKeys = ref([])
|
|
|
|
|
+ // 列表选择配置
|
|
|
|
|
+ const options = {
|
|
|
|
|
+ // columns数字类型字段加入 needTotal: true 可以勾选自动算账
|
|
|
|
|
+ alert: {
|
|
|
|
|
+ show: true,
|
|
|
|
|
+ clear: () => {
|
|
|
|
|
+ selectedRowKeys.value = ref([])
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ rowSelection: {
|
|
|
|
|
+ onChange: (selectedRowKey, selectedRows) => {
|
|
|
|
|
+ selectedRowKeys.value = selectedRowKey
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ const loadData = (parameter) => {
|
|
|
|
|
+ return forumReportInfoApi.forumReportInfoPage(parameter).then((data) => {
|
|
|
|
|
+ return data
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ // 重置
|
|
|
|
|
+ const reset = () => {
|
|
|
|
|
+ searchFormRef.value.resetFields()
|
|
|
|
|
+ table.value.refresh(true)
|
|
|
|
|
+ }
|
|
|
|
|
+ // 删除
|
|
|
|
|
+ const deleteForumReportInfo = (record) => {
|
|
|
|
|
+ let params = [
|
|
|
|
|
+ {
|
|
|
|
|
+ reportId: record.reportId
|
|
|
|
|
+ }
|
|
|
|
|
+ ]
|
|
|
|
|
+ forumReportInfoApi.forumReportInfoDelete(params).then(() => {
|
|
|
|
|
+ table.value.refresh(true)
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ // 批量删除
|
|
|
|
|
+ const deleteBatchForumReportInfo = (params) => {
|
|
|
|
|
+ forumReportInfoApi.forumReportInfoDelete(params).then(() => {
|
|
|
|
|
+ table.value.clearRefreshSelected()
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ //状态
|
|
|
|
|
+ const statusType = ref([
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '关闭帖子',
|
|
|
|
|
+ value: 1
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '驳回举报',
|
|
|
|
|
+ value: 2
|
|
|
|
|
+ }
|
|
|
|
|
+ ])
|
|
|
|
|
+ const reportStatus = ref()
|
|
|
|
|
+ const itemData = ref({})
|
|
|
|
|
+ const openAudit = ref(false)
|
|
|
|
|
+ const showModal = (event) => {
|
|
|
|
|
+ itemData.value = event
|
|
|
|
|
+ openAudit.value = true
|
|
|
|
|
+ }
|
|
|
|
|
+ const auditFun = (event) => {
|
|
|
|
|
+ if(!reportStatus.value){
|
|
|
|
|
+ message.warning('请选择处理方式')
|
|
|
|
|
+ return
|
|
|
}
|
|
}
|
|
|
- }
|
|
|
|
|
- const loadData = (parameter) => {
|
|
|
|
|
- return forumReportInfoApi.forumReportInfoPage(parameter).then((data) => {
|
|
|
|
|
- return data
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
- // 重置
|
|
|
|
|
- const reset = () => {
|
|
|
|
|
- searchFormRef.value.resetFields()
|
|
|
|
|
- table.value.refresh(true)
|
|
|
|
|
- }
|
|
|
|
|
- // 删除
|
|
|
|
|
- const deleteForumReportInfo = (record) => {
|
|
|
|
|
- let params = [
|
|
|
|
|
- {
|
|
|
|
|
- reportId: record.reportId
|
|
|
|
|
- }
|
|
|
|
|
- ]
|
|
|
|
|
- forumReportInfoApi.forumReportInfoDelete(params).then(() => {
|
|
|
|
|
- table.value.refresh(true)
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
- // 批量删除
|
|
|
|
|
- const deleteBatchForumReportInfo = (params) => {
|
|
|
|
|
- forumReportInfoApi.forumReportInfoDelete(params).then(() => {
|
|
|
|
|
- table.value.clearRefreshSelected()
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ forumApi
|
|
|
|
|
+ .reportinfoAudit({
|
|
|
|
|
+ reportId: itemData.value.reportId,
|
|
|
|
|
+ reportStatus: reportStatus.value
|
|
|
|
|
+ })
|
|
|
|
|
+ .then((data) => {
|
|
|
|
|
+ openAudit.value = false
|
|
|
|
|
+ table.value.refresh(true)
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
</script>
|
|
</script>
|