...
|
...
|
@@ -84,12 +84,12 @@ function chooseAction(pDom, dom) { |
|
|
function confirmAction() {
|
|
|
var type = $invoiceType.find('.on').data('id'),
|
|
|
title = $('.invoice-top').find('.on').text(),
|
|
|
tel = $tel.data('tel'),
|
|
|
tel = $tel.attr('data-tel'),
|
|
|
company = $('.company').val(),
|
|
|
cont = $chooseCont.data('id');
|
|
|
|
|
|
if ($editFlag.val() === 'true') {
|
|
|
if (!myreg.test($tel.data('tel'))) {
|
|
|
if (!myreg.test($tel.attr('data-tel'))) {
|
|
|
tip.show('请输入正确手机号');
|
|
|
$tel.focus();
|
|
|
return false;
|
...
|
...
|
|