Commit f109afff authored by 前端-黄佳鑫's avatar 前端-黄佳鑫

🐞 fix(询价报价): 二次询价按钮显示问题

parent 6873635a
......@@ -84,8 +84,8 @@ const InquirySearch = () => {
{record.isShowQuote && (
<Button onClick={() => history.push(`/memberCenter/tranactionAbility/inquiryOffer/waitAddOffer/offer?id=${record.id}`)} type='link'>报价</Button>
)}
{(record.isShowSecondInquiry) && (
<Button type='link' onClick={() => secondInquiry(record.id)}>二次询价</Button>
{(record.isShowSecondInquiry !== null) && (
<Button type='link' disabled={record.isShowSecondInquiry === false} onClick={() => secondInquiry(record.id)}>二次询价</Button>
)}
</>
}
......
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