diff --git a/src/main/resources/messages/message_en.properties b/src/main/resources/messages/message_en.properties
index 3b95cc3c2..da2678ad8 100644
--- a/src/main/resources/messages/message_en.properties
+++ b/src/main/resources/messages/message_en.properties
@@ -212,7 +212,7 @@ remarks=Remark
operation=Operation
submit=Submit
cancel=Cancel
-begin_date=Begin Time
+begin_date=Start Time
end_date=End Time
delete=Delete
special_task=Special Task
@@ -1056,3 +1056,4 @@ Maintenance=Advanced
Proxy=Proxy
selective=Selective
ip_protocol=IP Protocol
+max_shouldnot_less_than_min=The max item should not be less than the min item.
\ No newline at end of file
diff --git a/src/main/resources/messages/message_ru.properties b/src/main/resources/messages/message_ru.properties
index 99b903bf6..0cd1cce84 100644
--- a/src/main/resources/messages/message_ru.properties
+++ b/src/main/resources/messages/message_ru.properties
@@ -212,7 +212,7 @@ remarks=remarks
operation=operation
submit=submit
cancel=cancel
-begin_date=begin date
+begin_date=start date
end_date=end date
delete=delete
special_task=special task
@@ -858,4 +858,6 @@ dest_ip_report=Destination Country IP Report
isp_report=Isp Report
#=============about report===================
show_more=Show More
-ratelimit_limit=Limit Rate must between 0 and 100
\ No newline at end of file
+ratelimit_limit=Limit Rate must between 0 and 100
+
+max_shouldnot_less_than_min=The max item should not be less than the min item.
\ No newline at end of file
diff --git a/src/main/resources/messages/message_zh_CN.properties b/src/main/resources/messages/message_zh_CN.properties
index 469d3ce8c..03d12d604 100644
--- a/src/main/resources/messages/message_zh_CN.properties
+++ b/src/main/resources/messages/message_zh_CN.properties
@@ -1048,4 +1048,5 @@ traffic_website_list=\u7F51\u7AD9\u6D41\u91CF\u7EDF\u8BA1\u5217\u8868
traffic_website_type_chart=\u7F51\u7AD9\u5206\u7C7B\u6D41\u91CF\u7EDF\u8BA1\u56FE
website=\u7F51\u7AD9\u540D\u79F0
#===============dashboard end===================================
-ratelimit_limit=\u9650\u901F\u6BD4\u4F8B\u5FC5\u987B\u4ECB\u4E8E0\u5230100#===============dashboard end===================================
\ No newline at end of file
+ratelimit_limit=\u9650\u901F\u6BD4\u4F8B\u5FC5\u987B\u4ECB\u4E8E0\u5230100\#\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=dashboard end\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=
+max_shouldnot_less_than_min=\u6700\u5927\u9879\u4E0D\u80FD\u5C0F\u4E8E\u6700\u5C0F\u9879
\ No newline at end of file
diff --git a/src/main/webapp/WEB-INF/views/cfg/maintenance/dnsResStrategy/form.jsp b/src/main/webapp/WEB-INF/views/cfg/maintenance/dnsResStrategy/form.jsp
index 4412ca2b7..664568bf9 100644
--- a/src/main/webapp/WEB-INF/views/cfg/maintenance/dnsResStrategy/form.jsp
+++ b/src/main/webapp/WEB-INF/views/cfg/maintenance/dnsResStrategy/form.jsp
@@ -51,8 +51,17 @@ $(function(){
$("#cfgId").attr("aria-invalid","true");
}
if(flag){
- loading('onloading...');
- form.submit();
+ var maxTtl=$("[name=maxTtl]").val();
+ var minTtl=$("[name=minTtl]").val();
+ if(minTtl>maxTtl){
+ message="";
+ $("div[for=maxTtl]").html("");
+ flag=false;
+ }
+ }
+ if(flag){
+ //loading('onloading...');
+ //form.submit();
}
},
errorContainer: "#messageBox"
@@ -143,7 +152,7 @@ $(function(){