...
|
...
|
@@ -81,7 +81,7 @@ $addressForm.on('submit', function() { |
|
|
tip.show('收货人姓名最多支持20个字');
|
|
|
}
|
|
|
|
|
|
if (username && /([^u4e00-\u9fa5])([^\p{P}])/.test(username)) {
|
|
|
if (username && /([^u4e00-\u9fa5])([^\p{P}])/gi.test(username)) {
|
|
|
tip.show('收货人姓名不支持特殊符号');
|
|
|
}
|
|
|
|
...
|
...
|
|