|
|
|
@ -17,7 +17,21 @@ |
|
|
|
<el-table-column label="投诉内容" prop="eventContent" show-overflow-tooltip min-width="220px"></el-table-column> |
|
|
|
<el-table-column label="接收时间" prop="happenTime"></el-table-column> |
|
|
|
<el-table-column label="联系人" prop="name"></el-table-column> |
|
|
|
<el-table-column label="联系电话" prop="mobile"></el-table-column> |
|
|
|
<el-table-column label="联系电话" prop="mobile"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button |
|
|
|
v-if="scope.row.reportUserId != null && scope.row.reportUserId != ''" |
|
|
|
@click="handleLook(scope.row)" |
|
|
|
type="text" |
|
|
|
size="small" |
|
|
|
> |
|
|
|
{{ $sensitive(scope.row.mobile, 3, 7) }} |
|
|
|
</el-button> |
|
|
|
<span v-else> |
|
|
|
{{ $sensitive(scope.row.mobile, 3, 7) }} |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="状态" prop="status"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.status === 'processing'">处理中</span> |
|
|
|
@ -136,6 +150,17 @@ export default { |
|
|
|
this.showDialog = true; |
|
|
|
this.rowId = icEventId; |
|
|
|
}, |
|
|
|
// 查看 |
|
|
|
handleLook(row) { |
|
|
|
let { reportUserId } = row |
|
|
|
this.$router.push({ |
|
|
|
path: "/dataBoard/overview/resident", |
|
|
|
query: { |
|
|
|
user_id: reportUserId, |
|
|
|
type:'renfang' |
|
|
|
}, |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|