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;
... ... @@ -122,7 +125,7 @@
line-height: 18px;
padding: 4px 5px 4px 10px;
color: #666;
background: resolve(/cart/cartnew_tipsbox.png) no-repeat;
background: resolve(/cart/cartnew_tipsbox.png) no-repeat;
position: relative;
float: left;
... ... @@ -130,7 +133,7 @@
width: 17px;
height: 17px;
padding: 0px;
background: url(/cart/i_close_f.png) no-repeat;
background: url(/cart/i_close_f.png) no-repeat;
float: right;
cursor: pointer;
}
... ... @@ -176,7 +179,7 @@
color: #c21250;
display: block;
}
}
.giftInfo{
margin-left: 30px;
}
... ... @@ -317,10 +320,10 @@
font-size: 10px;
}
.minus{
background: url(/cart/ico_minus.png);
background: url(/cart/ico_minus.png);
}
.plus{
background: url(/cart/ico_plus.png);
background: url(/cart/ico_plus.png);
}
}
.cart-add-btn{
... ... @@ -347,7 +350,7 @@
position: relative;
border: 1px solid #dcdcdc;
background: #ebebeb;
border-radius: 3px;
border-radius: 3px;
}
.cart-del-btn,.cart-remove-btn {
height: 22px;
... ...