Commit 038e44ff authored by 靳野's avatar 靳野

feat:修复售后状态显示问题

parent 518b0f0d
...@@ -76,8 +76,15 @@ const DetailModal = (props, ref) => { ...@@ -76,8 +76,15 @@ const DetailModal = (props, ref) => {
{ {
title: '售后状态', title: '售后状态',
width: 150, width: 150,
dataIndex: 'afterServiceStatusDesc', render: row => {
render: value => value || '-', if (row.afterServiceStatusDesc) {
return row.afterServiceStatusDesc;
}
if (row.afterSaleVos && row.afterSaleVos.length) {
return row.afterSaleVos[0].afterServiceStatusDesc;
}
return '-';
},
}, },
]; ];
......
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