344 lines
11 KiB
Vue
344 lines
11 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item label="被举报人" prop="reportUserId">
|
|
<el-input
|
|
v-model="queryParams.reportUserId"
|
|
placeholder="请输入被举报人"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="被举报的通告" prop="reportNoticeId">
|
|
<el-input
|
|
v-model="queryParams.reportNoticeId"
|
|
placeholder="请输入被举报的通告"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="举报类型文本" prop="reportTitle">
|
|
<el-input
|
|
v-model="queryParams.reportTitle"
|
|
placeholder="请输入举报类型文本"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="处理人" prop="dealUserId">
|
|
<el-input
|
|
v-model="queryParams.dealUserId"
|
|
placeholder="请输入处理人"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-hasPermi="['busi:report:add']"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="single"
|
|
@click="handleUpdate"
|
|
v-hasPermi="['busi:report:edit']"
|
|
>修改</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
v-hasPermi="['busi:report:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
v-hasPermi="['busi:report:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="reportList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="唯一主键" align="center" prop="id" />
|
|
<el-table-column label="用户" align="center" prop="userId" />
|
|
<el-table-column label="被举报人" align="center" prop="reportUserId" />
|
|
<el-table-column label="被举报的通告" align="center" prop="reportNoticeId" />
|
|
<el-table-column label="举报类型文本" align="center" prop="reportTitle" />
|
|
<el-table-column label="处理人" align="center" prop="dealUserId" />
|
|
<el-table-column label="处理结果" align="center" prop="dealResult" />
|
|
<el-table-column label="处理时间" align="center" prop="dealTime" width="180">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.dealTime, '{y}-{m}-{d}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['busi:report:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['busi:report:remove']"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改举报记录对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
<el-form-item label="用户类型" prop="userType">
|
|
<el-select v-model="form.userType" placeholder="请选择用户类型">
|
|
<el-option
|
|
v-for="dict in dict.type.dl_user_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="被举报人" prop="reportUserId">
|
|
<el-input v-model="form.reportUserId" placeholder="请输入被举报人" />
|
|
</el-form-item>
|
|
<el-form-item label="被举报人类型" prop="reportUserType">
|
|
<el-select v-model="form.reportUserType" placeholder="请选择被举报人类型">
|
|
<el-option
|
|
v-for="dict in dict.type.dl_user_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="被举报的通告" prop="reportNoticeId">
|
|
<el-input v-model="form.reportNoticeId" placeholder="请输入被举报的通告" />
|
|
</el-form-item>
|
|
<el-form-item label="举报类型文本" prop="reportTitle">
|
|
<el-input v-model="form.reportTitle" placeholder="请输入举报类型文本" />
|
|
</el-form-item>
|
|
<el-form-item label="举报描述" prop="content">
|
|
<el-input v-model="form.content" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="举报图片" prop="images">
|
|
<image-upload v-model="form.images"/>
|
|
</el-form-item>
|
|
<el-form-item label="处理人" prop="dealUserId">
|
|
<el-input v-model="form.dealUserId" placeholder="请输入处理人" />
|
|
</el-form-item>
|
|
<el-form-item label="处理时间" prop="dealTime">
|
|
<el-date-picker clearable
|
|
v-model="form.dealTime"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="请选择处理时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listReport, getReport, delReport, addReport, updateReport } from "@/api/busi/report";
|
|
|
|
export default {
|
|
name: "Report",
|
|
dicts: ['dl_user_type'],
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 举报记录表格数据
|
|
reportList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
userId: null,
|
|
reportUserId: null,
|
|
reportNoticeId: null,
|
|
reportTitle: null,
|
|
dealUserId: null,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询举报记录列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listReport(this.queryParams).then(response => {
|
|
this.reportList = response.data.records;
|
|
this.total = response.data.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
userId: null,
|
|
userType: null,
|
|
reportUserId: null,
|
|
reportUserType: null,
|
|
reportNoticeId: null,
|
|
reportType: null,
|
|
reportTitle: null,
|
|
content: null,
|
|
images: null,
|
|
dealUserId: null,
|
|
dealResult: null,
|
|
dealTime: null,
|
|
creator: null,
|
|
createTime: null,
|
|
updater: null,
|
|
updateTime: null,
|
|
delFlag: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.id)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加举报记录";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const id = row.id || this.ids
|
|
getReport(id).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改举报记录";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.id != null) {
|
|
updateReport(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addReport(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否确认删除举报记录编号为"' + ids + '"的数据项?').then(function() {
|
|
return delReport(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('busi/report/export', {
|
|
...this.queryParams
|
|
}, `report_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|