Authored by 张丽霞

电子发票模板

... ... @@ -452,8 +452,8 @@
</div>
<div class="receipt-footer">
<div class="save-receipt highlight">保存发票信息</div>
<div class="cancel-receipt normal">取消</div>
<div class="save-receipt highlight curser-button">保存发票信息</div>
<div class="cancel-receipt normal curser-button">取消</div>
</div>
</div>
</div>
... ...
... ... @@ -905,7 +905,7 @@ function saveReceiptInfo() {
};
})
receiptMobile = $('#input-mobile').val();
verifymobile = /[0-9]{11}/;
verifymobile = /[*0-9]{11}/;
if (!verifymobile.test(receiptMobile)) {
$('.invoice-phone .enpty-input').removeClass('hide');
passInfoVerify = false;
... ... @@ -913,6 +913,8 @@ function saveReceiptInfo() {
if (!passInfoVerify) {
return;
} else {
$('.invoice-title .enpty-input').addClass('hide');
$('.invoice-phone .enpty-input').addClass('hide');
receiptTitle = $('#input-organization-name').val();
}
}
... ...
... ... @@ -2,6 +2,9 @@
.none{
display: none;
}
.curser-button {
cursor: pointer;
}
.gift{
position: relative;
width: 988px;
... ...