Commit 21075c52 authored by 王启林's avatar 王启林

办理事项评价记录报表更改为一号一评记录报表新增办理窗口工作人员以及详情增加窗口编号

parent 633b0559
...@@ -337,7 +337,7 @@ const routes = [ ...@@ -337,7 +337,7 @@ const routes = [
/* webpackChunkName: "matterEvaluation" */ "@/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue" /* webpackChunkName: "matterEvaluation" */ "@/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue"
), ),
meta: { meta: {
title: "办理事项评价记录报表", title: "一号一评记录报表",
activeMenu: "/home/dataManagement", activeMenu: "/home/dataManagement",
}, },
}, },
......
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
<div slot="description"> <div slot="description">
<a-row :gutter="[0, 8]"> <a-row :gutter="[0, 8]">
<a-col :span="12"> <a-col :span="12">
<span>办理窗口:</span>{{ detailsInfo.window_name }} <span>办理窗口:</span>{{ detailsInfo.window_name +detailsInfo.window_fromnum }}
</a-col> </a-col>
<a-col :span="12"> <a-col :span="12">
<span>开始办理时间:</span>{{ detailsInfo.calltime }} <span>开始办理时间:</span>{{ detailsInfo.calltime }}
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
:data-source="tableData" :data-source="tableData"
:loading="loading" :loading="loading"
:scroll="{ :scroll="{
x: 1500,
y: 490, y: 490,
}" }"
:row-selection="{ :row-selection="{
...@@ -72,6 +73,8 @@ import { getEvaList, getEvaDetil, getQueEvaData } from "@/api/dataAdmin"; ...@@ -72,6 +73,8 @@ import { getEvaList, getEvaDetil, getQueEvaData } from "@/api/dataAdmin";
const tHeader = [ const tHeader = [
"排队编号", "排队编号",
"评价选项", "评价选项",
"办理窗口",
"工作人员",
"评价人", "评价人",
"身份证号", "身份证号",
"手机号", "手机号",
...@@ -82,6 +85,8 @@ const tHeader = [ ...@@ -82,6 +85,8 @@ const tHeader = [
const filterVal = [ const filterVal = [
"flounum", "flounum",
"option_id", "option_id",
"window",
"workman_name",
"idcard_Name", "idcard_Name",
"idcard_IDCardNo", "idcard_IDCardNo",
"phone", "phone",
...@@ -119,6 +124,22 @@ export default { ...@@ -119,6 +124,22 @@ export default {
return text ? text : "--"; return text ? text : "--";
}, },
}, },
{
title: "办理窗口",
width: 100,
dataIndex: "window",
customRender: (text) => {
return text ? text : "--";
},
},
{
title: "工作人员",
width: 100,
dataIndex: "workman_name",
customRender: (text) => {
return text ? text : "--";
},
},
{ {
title: "评价人", title: "评价人",
width: 100, width: 100,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment