Commit e111857f authored by 张子雨's avatar 张子雨

Merge branch 'feat/afterSaleManageEdit' into 'master'

Feat/after sale manage edit

See merge request !80
parents 84605861 adc517e8
...@@ -257,13 +257,16 @@ export const getColumns = props => { ...@@ -257,13 +257,16 @@ export const getColumns = props => {
</span> </span>
); );
} }
if (+serviceType === 4) {
return <span style={{ color: '#ff1616' }}> 仅退款(发货中)</span>;
}
return <span>退货退款</span>; return <span>退货退款</span>;
}, },
}, },
{ {
title: '售后单ID', title: '售后单ID',
dataIndex: 'serviceNo', dataIndex: 'serviceNo',
width: 310, width: 300,
render: (serviceNo, r) => ( render: (serviceNo, r) => (
<div> <div>
{r.timeout ? <Tag color="red">{serviceNo}</Tag> : serviceNo} {r.timeout ? <Tag color="red">{serviceNo}</Tag> : serviceNo}
...@@ -513,8 +516,8 @@ export const getColumns = props => { ...@@ -513,8 +516,8 @@ export const getColumns = props => {
} }
} }
// 实物商品-仅退款未发货 serviceType = 0 // 实物商品-仅退款未发货 serviceType = 0, 仅退款(发货中) serviceType = 4
if (serviceType === 0) { if (serviceType === 0 || serviceType === 4) {
// 待商户审核14 待审核0 // 待商户审核14 待审核0
if ([14, 0].includes(status)) { if ([14, 0].includes(status)) {
return [cancelAuditBtn, cancelDetailBtn, viewLogBtn]; return [cancelAuditBtn, cancelDetailBtn, viewLogBtn];
......
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