Commit d796697a authored by 姬鋆屾's avatar 姬鋆屾

fix:存件报表未取件时不展示取件时间

parent 01cb4175
......@@ -121,8 +121,8 @@ export default {
title: "取件时间",
dataIndex: "update_time",
width: 150,
customRender: (text) => {
return text || "--";
customRender: (text, record) => {
return record.status == 1 ? "--" : text ? text : "--";
},
},
];
......
......@@ -120,8 +120,8 @@ export default {
title: "取件时间",
dataIndex: "update_time",
width: 150,
customRender: (text) => {
return text || "--";
customRender: (text, record) => {
return record.status == 1 ? "--" : text ? text : "--";
},
},
];
......
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