Commit 3f50502b authored by 姬鋆屾's avatar 姬鋆屾
parents 3b27aa5c 7d100707
......@@ -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