...
|
...
|
@@ -79,10 +79,12 @@ $addressForm.on('submit', function() { |
|
|
|
|
|
if (username && username.length > 20) {
|
|
|
tip.show('收货人姓名最多支持20个字');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if (username && /([^u4e00-\u9fa5])([^\p{P}])/gi.test(username)) {
|
|
|
tip.show('收货人姓名不支持特殊符号');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if (!$(this).find('[name="mobile"]').val()) {
|
...
|
...
|
|