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

推修改数据不显示

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