|
|
|
@ -39,6 +39,10 @@ |
|
|
|
<span class="title-label">出库单号</span> |
|
|
|
<span class="title-value">{{ outboundInfo.outboundNo }}</span> |
|
|
|
</div> |
|
|
|
<div class="title-center-group"> |
|
|
|
<span class="title-label">合约号码</span> |
|
|
|
<span class="title-value contract-value">{{ outboundInfo.outBatchNo || '-' }}</span> |
|
|
|
</div> |
|
|
|
<div class="title-right-group"> |
|
|
|
<span class="title-label">关联单号</span> |
|
|
|
<span class="title-value related-value">{{ outboundInfo.relatedNo }}</span> |
|
|
|
@ -695,6 +699,12 @@ export default { |
|
|
|
flex-direction: column; |
|
|
|
} |
|
|
|
|
|
|
|
.title-center-group { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
|
|
|
|
.title-right-group { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
@ -721,6 +731,12 @@ export default { |
|
|
|
font-weight: 500; |
|
|
|
} |
|
|
|
|
|
|
|
.title-value.contract-value { |
|
|
|
font-size: 13px; |
|
|
|
font-weight: 500; |
|
|
|
color: #17B3A3; |
|
|
|
} |
|
|
|
|
|
|
|
.card-details { |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
|