|
|
@@ -218,6 +218,11 @@ public class DomainOrderService {
|
|
|
Map<String, Object> result = new HashMap<>();
|
|
|
Long superUserId = Long.valueOf(sysConfigService.getString("domain_superUserId"));
|
|
|
String visibleDomain = domain;
|
|
|
+ if (isContainChinese(domain)) {
|
|
|
+ result.put("result", false);
|
|
|
+ result.put("reason", "禁止使用中文");
|
|
|
+ return result;
|
|
|
+ }
|
|
|
if (domain.contains(".uni")) {
|
|
|
result.put("result", false);
|
|
|
result.put("reason", "禁止使用.uni");
|