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

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

parent 633b0559
......@@ -337,7 +337,7 @@ const routes = [
/* webpackChunkName: "matterEvaluation" */ "@/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue"
),
meta: {
title: "办理事项评价记录报表",
title: "一号一评记录报表",
activeMenu: "/home/dataManagement",
},
},
......
......@@ -270,7 +270,7 @@
<div slot="description">
<a-row :gutter="[0, 8]">
<a-col :span="12">
<span>办理窗口:</span>{{ detailsInfo.window_name }}
<span>办理窗口:</span>{{ detailsInfo.window_name +detailsInfo.window_fromnum }}
</a-col>
<a-col :span="12">
<span>开始办理时间:</span>{{ detailsInfo.calltime }}
......
......@@ -6,6 +6,7 @@
:data-source="tableData"
:loading="loading"
:scroll="{
x: 1500,
y: 490,
}"
:row-selection="{
......@@ -72,6 +73,8 @@ import { getEvaList, getEvaDetil, getQueEvaData } from "@/api/dataAdmin";
const tHeader = [
"排队编号",
"评价选项",
"办理窗口",
"工作人员",
"评价人",
"身份证号",
"手机号",
......@@ -82,6 +85,8 @@ const tHeader = [
const filterVal = [
"flounum",
"option_id",
"window",
"workman_name",
"idcard_Name",
"idcard_IDCardNo",
"phone",
......@@ -119,6 +124,22 @@ export default {
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: "评价人",
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