Authored by yyq

Merge branch 'feature/invoice' into release/5.9

... ... @@ -138,8 +138,7 @@ function setShowInvoiceInfo() {
_h += '电子发票';
}
_h += '    ' + invoiceInfo.titleName +
'    ' + invoiceInfo.contentName;
_h += '    ' + invoiceInfo.titleName;
$dom.removeClass('hide').find('span').html(_h);
}
... ...
... ... @@ -771,6 +771,15 @@
padding-right: 20px;
font-size: 14px;
> span {
display: inline-block;
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: middle;
}
> label {
width: 80px;
height: 24px;
... ...