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