Authored by 郭成尧

gi

@@ -81,7 +81,7 @@ $addressForm.on('submit', function() { @@ -81,7 +81,7 @@ $addressForm.on('submit', function() {
81 tip.show('收货人姓名最多支持20个字'); 81 tip.show('收货人姓名最多支持20个字');
82 } 82 }
83 83
84 - if (username && /([^u4e00-\u9fa5])([^\p{P}])/.test(username)) { 84 + if (username && /([^u4e00-\u9fa5])([^\p{P}])/gi.test(username)) {
85 tip.show('收货人姓名不支持特殊符号'); 85 tip.show('收货人姓名不支持特殊符号');
86 } 86 }
87 87
@@ -46,7 +46,7 @@ $btnSure.on('click', function() { @@ -46,7 +46,7 @@ $btnSure.on('click', function() {
46 tip.show('收货人姓名最多支持20个字'); 46 tip.show('收货人姓名最多支持20个字');
47 } 47 }
48 48
49 - if (username && /([^u4e00-\u9fa5])([^\p{P}])/.test(username)) { 49 + if (username && /([^u4e00-\u9fa5])([^\p{P}])/gi.test(username)) {
50 tip.show('收货人姓名不支持特殊符号'); 50 tip.show('收货人姓名不支持特殊符号');
51 return false; 51 return false;
52 } 52 }