城阳pc工作端前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

664 lines
20 KiB

3 years ago
<template>
<div class="div_main">
3 years ago
<div v-show="pageType == 'list'">
<div class="div_search">
<el-form :inline="true"
:model="formData"
ref="ref_searchform"
:label-width="'80px'">
<div>
<el-form-item label="所属网格"
prop="gridId">
<el-select class="item_width_1"
v-model="formData.gridId"
placeholder="全部"
size="small"
clearable>
<el-option v-for="item in gridList"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="上报渠道"
prop="sourceType">
<el-select v-model="formData.sourceType"
placeholder="请选择"
size="small"
clearable
class="item_width_2">
<el-option v-for="item in qudaoArray"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="事件内容"
prop="eventContent">
<el-input v-model="formData.eventContent"
class="item_width_1"
size="small"
clearable
placeholder="请输入">
</el-input>
</el-form-item>
<el-form-item label="报事人"
prop="name">
<el-input v-model="formData.name"
class="item_width_2"
size="small"
clearable
placeholder="请输入">
</el-input>
</el-form-item>
<el-form-item label="手机号"
prop="mobile">
<el-input v-model="formData.mobile"
class="item_width_2"
size="small"
clearable
placeholder="请输入">
</el-input>
</el-form-item>
<el-form-item label="上报时间"
prop="startTime">
<el-date-picker v-model="formData.startTime"
:picker-options="startPickerOptions"
class="item_width_2"
size="small"
type="date"
value-format="yyyy-MM-dd HH:mm:ss"
value="yyyy-MM-dd"
placeholder="开始时间">
</el-date-picker>
<span class="data-tag"></span>
<el-date-picker v-model="formData.endTime"
:picker-options="endPickerOptions"
class="item_width_2 data-tag"
size="small"
type="date"
value-format="yyyy-MM-dd HH:mm:ss"
value="yyyy-MM-dd"
placeholder="结束时间">
</el-date-picker>
</el-form-item>
<el-form-item label="状态"
prop="status">
<el-select class="item_width_2"
v-model="formData.status"
placeholder="全部"
size="small"
clearable>
<el-option v-for="item in statusArray"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<el-button style="margin-left:30px"
3 years ago
size="small"
3 years ago
class="diy-button--search"
@click="handleSearch">查询</el-button>
<el-button style="margin-left:10px"
3 years ago
size="small"
3 years ago
class="diy-button--reset"
@click="resetSearch">重置</el-button>
</div>
</el-form>
</div>
3 years ago
3 years ago
<div class="div_table">
3 years ago
3 years ago
<div class="div_btn">
<el-button class="diy-button--add"
3 years ago
size="small"
3 years ago
@click="handleAdd">新增</el-button>
<el-button @click="handleExport"
3 years ago
class="diy-button--reset"
3 years ago
size="small">导出</el-button>
3 years ago
</div>
3 years ago
<el-table :data="tableData"
border
:header-cell-style="{background:'#2195FE',color:'#FFFFFF'}"
class="table"
style="width: 100%"
:height="maxTableHeight">
<el-table-column label="序号"
fixed="left"
type="index"
align="center"
width="50" />
<el-table-column prop="gridName"
align="center"
label="所属网格"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="eventContent"
label="事件内容"
align="center"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="imageList"
align="center"
3 years ago
width="80"
3 years ago
label="图片">
3 years ago
<template slot-scope="scope">
<el-image v-if="scope.row.imageList&&scope.row.imageList.length>0"
3 years ago
style="width: 40px; height: 40px"
3 years ago
:src="scope.row.imageList[0]"
:preview-src-list="scope.row.imageList">
</el-image>
<span v-else></span>
3 years ago
</template>
</el-table-column>
<el-table-column prop="voiceList"
align="center"
3 years ago
width="80"
3 years ago
label="音频">
3 years ago
<template slot-scope="scope">
3 years ago
<img @click="handleShowVoice(scope.row.voiceList[0])"
class="img-voice"
3 years ago
v-if="scope.row.voiceList&&scope.row.voiceList.length>0"
src="@/assets/img/icon-voice.png" />
<span v-else></span>
3 years ago
</template>
</el-table-column>
<el-table-column prop="sourceTypeName"
align="center"
3 years ago
width="110"
3 years ago
label="上报渠道"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="address"
align="center"
3 years ago
:show-overflow-tooltip="true"
3 years ago
label="地址">
</el-table-column>
<el-table-column prop="name"
align="center"
width="100"
label="报事人"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="mobile"
align="center"
3 years ago
width="110"
3 years ago
label="手机号"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="satisfactionName"
align="center"
3 years ago
width="100"
3 years ago
label="满意度"
:show-overflow-tooltip="true">
<!-- <template slot-scope="scope">
<span v-if="scope.row.satisfactionName">--</span>
</template> -->
</el-table-column>
<el-table-column prop="createdTime"
align="center"
3 years ago
width="140"
:show-overflow-tooltip="true"
3 years ago
label="上报时间">
</el-table-column>
3 years ago
<el-table-column prop="operationTypeShow"
align="center"
width="100"
:show-overflow-tooltip="true"
label="结点">
</el-table-column>
3 years ago
<el-table-column prop="status"
align="center"
label="状态"
3 years ago
width="80"
3 years ago
:show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="scope.row.status==='processing'">处理中</span>
<span v-else-if="scope.row.status==='closed_case'">已办结</span>
<span v-else>--</span>
</template>
</el-table-column>
<el-table-column fixed="right"
label="操作"
align="center"
3 years ago
width="100">
3 years ago
<template slot-scope="scope">
3 years ago
3 years ago
<el-button v-if="scope.row.status==='processing'&&!scope.row.operationId "
3 years ago
@click="handleDispose(scope.row)"
3 years ago
type="text"
size="small"
3 years ago
class="div-table-button--edit">处理</el-button>
3 years ago
3 years ago
<el-button v-else-if="scope.row.status==='closed_case' && !scope.row.satisfactionName && user.id===scope.row.createdUserId"
@click="handleWatch(scope.row)"
3 years ago
type="text"
size="small"
3 years ago
class="div-table-button--edit">去评价</el-button>
3 years ago
<el-button v-else
@click="handleWatch(scope.row)"
type="text"
size="small">查看</el-button>
3 years ago
3 years ago
</template>
</el-table-column>
</el-table>
<div>
<el-pagination @size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page.sync="pageNo"
:page-sizes="[20, 50, 100, 200]"
:page-size="parseInt(pageSize)"
layout="sizes, prev, pager, next, total"
:total="total">
</el-pagination>
</div>
3 years ago
</div>
</div>
3 years ago
<div v-if="pageType == 'dispose' || pageType == 'info'|| pageType == 'add'">
3 years ago
<event-info ref="eleEditForm"
:pageType="pageType"
:eventId="eventId"
3 years ago
:eventDetailData="eventDetailData"
3 years ago
@handleClose="handleClose"
3 years ago
@handleOk="handleOk"
3 years ago
@dialogOk="handleEditSuccess" />
3 years ago
</div>
3 years ago
3 years ago
<el-dialog :title="'播放语音'"
:visible.sync="showVoice"
width="40%"
top="5vh"
append-to-body
class="dialog-h"
:close-on-click-modal="false">
<div class="dialog-h-content scroll-h">
<div style="display:flex;justify-content:center;margin:50px">
<audio controls>
<source :src="selVoiceUrl"
type="" />
</audio>
</div>
</div>
<div class="resi-btns">
<el-button size="small"
@click="showVoice=false">取消</el-button>
</div>
</el-dialog>
3 years ago
</div>
</template>
<script>
import { requestPost } from "@/js/dai/request";
import nextTick from "dai-js/tools/nextTick";
import { mapGetters } from "vuex";
3 years ago
import eventInfo from "./cpts/event-info";
3 years ago
import axios from "axios";
export default {
3 years ago
components: { eventInfo },
3 years ago
data () {
3 years ago
let endDisabledDate = (time) => {//这个关键属性我们一定要写在data的里面并且return的外面,这是动态改变区间的关键
let nowData = Date.now()
if (this.formData.startTime) {
let startTime = new Date(this.formData.startTime)
return time.getTime() > nowData || time.getTime() < startTime || time.getTime() === startTime
} else {
return time.getTime() > nowData
}
3 years ago
3 years ago
}
let startDisabledDate = (time) => {//这个关键属性我们一定要写在data的里面并且return的外面,这是动态改变区间的关键
let nowData = Date.now()
return time.getTime() > nowData
}
3 years ago
3 years ago
return {
3 years ago
pageType: "list", // 列表list 新增add 处理dispose 详情info
3 years ago
user: {},
3 years ago
agencyId: '',
gridList: [],//所属网格list--场所区域
tableData: [],
statusArray: [
{
3 years ago
value: "processing",
3 years ago
label: "处理中",
},
{
3 years ago
value: "closed_case",
3 years ago
label: "已完成",
},
],
qudaoArray: [
{
value: "0",
label: "随手拍/随时讲",
},
{
value: "1",
label: "多媒体反应",
},
{
value: "2",
label: "社区电话",
},
{
value: "3",
label: "12345",
},
{
value: "4",
label: "网络员手持终端",
},
],
3 years ago
formData: {
gridId: '',
sourceType: '',
eventContent: '',
name: '',
mobile: '',
startTime: '',
endTime: '',
status: '',
3 years ago
3 years ago
},
pageNo: 1,
pageSize: window.localStorage.getItem("pageSize") || 20,
total: 1,
endPickerOptions: {
disabledDate: endDisabledDate
},
startPickerOptions: {
disabledDate: startDisabledDate
},
eventId: '',
3 years ago
3 years ago
eventDetailData: {},
3 years ago
3 years ago
showVoice: false,
selVoiceUrl: '',
3 years ago
};
},
computed: {
maxTableHeight () {
return this.$store.state.inIframe
3 years ago
? this.clientHeight - 410 + this.iframeHeigh
: this.clientHeight - 410;
3 years ago
},
...mapGetters(["clientHeight", "iframeHeight"]),
},
watch: {
3 years ago
"formData.endTime": function (val) {
3 years ago
if (val && val != '') {
let arrayTemp = val.split(' ')
this.formData.endTime = arrayTemp[0] + ' 23:59:59'
}
3 years ago
},
},
mounted () {
3 years ago
console.log(this.$store.state)
this.user = this.$store.state.user
this.agencyId = this.user.agencyId
3 years ago
this.loadGrid();
this.getTableData();
},
methods: {
handleSearch (val) {
3 years ago
console.log(this.formData);
3 years ago
this.pageNo = 1;
this.getTableData();
},
async loadGrid () {
const url = "/gov/org/customergrid/gridoption"
let params = {
3 years ago
agencyId: this.agencyId,
purpose: "query"
3 years ago
}
const { data, code, msg } = await requestPost(url, params)
if (code === 0) {
this.gridList = data
} else {
this.$message.error(msg)
}
},
async handleExport () {
3 years ago
const url = "/gov/project/icEvent/export";
3 years ago
const { pageSize, pageNo, formData } = this;
3 years ago
axios({
url: window.SITE_CONFIG["apiURL"] + url,
method: "post",
data: {
pageSize,
pageNo,
3 years ago
...formData,
3 years ago
},
responseType: "blob",
})
.then((res) => {
let fileName = window.decodeURI(
res.headers["content-disposition"].split(";")[1].split("=")[1]
);
console.log("filename", fileName);
let blob = new Blob([res.data], { type: "application/vnd.ms-excel" });
var url = window.URL.createObjectURL(blob);
var aLink = document.createElement("a");
aLink.style.display = "none";
aLink.href = url;
aLink.setAttribute("download", fileName);
document.body.appendChild(aLink);
aLink.click();
document.body.removeChild(aLink); //下载完成移除元素
window.URL.revokeObjectURL(url); //释放掉blob对象
})
.catch((err) => {
console.log("获取导出情失败", err);
return this.$message.error("网络错误");
});
},
3 years ago
async handleAdd () {
this.pageType = "add";
},
3 years ago
async handleWatch (row) {
this.eventId = row.icEventId
this.eventId = row.icEventId
const url = "/gov/project/icEvent/detail";
// const url = "http://yapi.elinkservice.cn/mock/245/gov/project/icEvent/detail";
const { data, code, msg } = await requestPost(url, {
icEventId: this.eventId,
});
3 years ago
3 years ago
if (code === 0) {
this.eventDetailData = { ...data };
this.pageType = "info";
} else {
this.$message.error(msg);
}
3 years ago
},
3 years ago
//加载组织数据
3 years ago
async handleDispose (row) {
this.eventId = row.icEventId
3 years ago
const url = "/gov/project/icEvent/detail";
// const url = "http://yapi.elinkservice.cn/mock/245/gov/project/icEvent/detail";
const { data, code, msg } = await requestPost(url, {
icEventId: this.eventId,
});
3 years ago
3 years ago
if (code === 0) {
this.eventDetailData = { ...data };
this.pageType = "dispose";
} else {
this.$message.error(msg);
}
3 years ago
},
3 years ago
//显示语音窗口
handleShowVoice (url) {
this.selVoiceUrl = url
this.showVoice = true
},
3 years ago
3 years ago
handleClose () {
this.pageType = "list";
3 years ago
this.eventId = ""
3 years ago
this.getTableData()
3 years ago
3 years ago
},
handleOk () {
this.pageType = "list";
this.eventId = ""
3 years ago
this.pageNo = 1
3 years ago
this.getTableData()
3 years ago
3 years ago
},
handleEditSuccess () {
this.handleClose();
this.getTableData();
},
async handleDel (rowData, rowIndex) {
console.log(rowData, rowIndex);
const url =
"/heart/iccommunityselforganization/delcommunityselforganization";
const { tableData } = this;
const { data, code, msg } = await requestPost(url, {
orgId: tableData[rowIndex].orgId,
});
if (code === 0) {
this.$message.success("删除成功!");
this.getTableData();
} else {
3 years ago
this.$message.error("操作失败!");
3 years ago
}
},
async getTableData () {
3 years ago
const url = "/gov/project/icEvent/list";
// const url = "http://yapi.elinkservice.cn/mock/245/gov/project/icEvent/list";
3 years ago
const { pageSize, pageNo, formData } = this;
3 years ago
const { data, code, msg } = await requestPost(url, {
pageSize,
pageNo,
3 years ago
...formData,
3 years ago
});
if (code === 0) {
3 years ago
3 years ago
this.total = data.total || 0;
this.tableData = data.list
? data.list.map((item) => {
return item;
})
: [];
3 years ago
this.tableData.forEach(item => {
if (item.operationType === '2') {
item.operationTypeShow = '已转需求'
}
if (item.operationType === '1') {
item.operationTypeShow = '已立项'
}
if (item.operationType === '0') {
item.operationTypeShow = '已回复'
}
});
3 years ago
} else {
3 years ago
this.$message.error(msg);
3 years ago
}
},
3 years ago
handleSizeChange (val) {
this.pageSize = val;
window.localStorage.setItem("pageSize", val);
this.getTableData();
},
handleCurrentChange (val) {
this.pageNo = val;
this.getTableData();
},
resetSearch () {
this.formData = {
gridId: '',
sourceType: '',
eventContent: '',
name: '',
mobile: '',
startTime: '',
endTime: '',
status: '',
}
// this.pageNo = 1
// this.loadTable()
},
3 years ago
},
};
</script>
<style lang="scss" scoped>
@import "@/assets/scss/buttonstyle.scss";
@import "@/assets/scss/modules/management/list-main.scss";
3 years ago
@import "@/assets/scss/modules/shequzhili/event-info.scss";
3 years ago
</style>