ui 수정
This commit is contained in:
@@ -115,10 +115,10 @@ export const ListItem = ({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(transactionCategory === TransactionCategory.CashReceipt){
|
else if(transactionCategory === TransactionCategory.CashReceipt){
|
||||||
str = `${customerName}(${issueNumber})`
|
str = `${customerName? customerName: '익명'}${issueNumber? '('+issueNumber+')': '' }`
|
||||||
}
|
}
|
||||||
else if(transactionCategory === TransactionCategory.Escrow){
|
else if(transactionCategory === TransactionCategory.Escrow){
|
||||||
str = `${customerName}(${issueNumber})`
|
str = `${customerName? customerName: '익명'}${issueNumber? '('+issueNumber+')': '' }`
|
||||||
}
|
}
|
||||||
else if(transactionCategory === TransactionCategory.Billing){
|
else if(transactionCategory === TransactionCategory.Billing){
|
||||||
str = `${billKey}`
|
str = `${billKey}`
|
||||||
|
|||||||
@@ -179,12 +179,12 @@ export const EscrowDetailPage = () => {
|
|||||||
isOpen={ showSettlementInfo }
|
isOpen={ showSettlementInfo }
|
||||||
onClickToOpenInfo={ (infoSectionKey) => onClickToOpenInfo(infoSectionKey) }
|
onClickToOpenInfo={ (infoSectionKey) => onClickToOpenInfo(infoSectionKey) }
|
||||||
></SettlementInfoSection>
|
></SettlementInfoSection>
|
||||||
|
<div className="txn-divider"></div>
|
||||||
<MerchantInfoSection
|
<MerchantInfoSection
|
||||||
merchantInfo={ merchantInfo }
|
merchantInfo={ merchantInfo }
|
||||||
isOpen={ showMerchantInfo }
|
isOpen={ showMerchantInfo }
|
||||||
onClickToOpenInfo={ (infoSectionKey) => onClickToOpenInfo(infoSectionKey) }
|
onClickToOpenInfo={ (infoSectionKey) => onClickToOpenInfo(infoSectionKey) }
|
||||||
></MerchantInfoSection>
|
></MerchantInfoSection>
|
||||||
<div className="txn-divider"></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="apply-row">
|
<div className="apply-row">
|
||||||
|
|||||||
Reference in New Issue
Block a user