Commit 5d17cd6f authored by 姬鋆屾's avatar 姬鋆屾

推修改数据不显示

parent 16a1f1e6
......@@ -212,24 +212,24 @@ export default {
title: "办理地点",
align: "center",
dataIndex: "address",
customRender: (text) => {
return text.address || "--";
customRender: (text, row) => {
return row.address || "--";
},
},
{
title: "预约编号",
align: "center",
dataIndex: "number",
customRender: (text) => {
return text.number || "--";
customRender: (text,row) => {
return row.number || "--";
},
},
{
title: "排号编码",
align: "center",
dataIndex: "flownum",
customRender: (text) => {
return text.flownum || "--";
customRender: (text,row) => {
return row.flownum || "--";
},
},
{
......@@ -250,8 +250,8 @@ export default {
{
title: "取消时间",
align: "center",
customRender: (text) => {
return text.canceltime || "--";
customRender: (text,row) => {
return row.canceltime || "--";
},
},
{
......
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