特定服务页面tab切换时去掉desc的必选*号

This commit is contained in:
wangxin
2018-08-15 11:45:33 +08:00
parent 5801922c78
commit e2a649339a

View File

@@ -136,15 +136,15 @@
if(cfgType==1){ if(cfgType==1){
$(".protocol_code").html('<font color="red">*</font><spring:message code="app_code"/>:'); $(".protocol_code").html('<font color="red">*</font><spring:message code="app_code"/>:');
$(".protocol_name").html('<font color="red">*</font><spring:message code="app_name"/>:'); $(".protocol_name").html('<font color="red">*</font><spring:message code="app_name"/>:');
$(".protocol_desc").html('<font color="red">*</font><spring:message code="app_desc"/>:'); $(".protocol_desc").html('<spring:message code="app_desc"/>:');
}else if(cfgType==2){ }else if(cfgType==2){
$(".protocol_code").html('<font color="red">*</font><spring:message code="tunnel_code"/>:'); $(".protocol_code").html('<font color="red">*</font><spring:message code="tunnel_code"/>:');
$(".protocol_name").html('<font color="red">*</font><spring:message code="tunnel_name"/>:'); $(".protocol_name").html('<font color="red">*</font><spring:message code="tunnel_name"/>:');
$(".protocol_desc").html('<font color="red">*</font><spring:message code="tunnel_desc"/>:'); $(".protocol_desc").html('<spring:message code="tunnel_desc"/>:');
}else{ }else{
$(".protocol_code").html('<font color="red">*</font><spring:message code="protocol_code"/>:'); $(".protocol_code").html('<font color="red">*</font><spring:message code="protocol_code"/>:');
$(".protocol_name").html('<font color="red">*</font><spring:message code="protocol_name"/>:'); $(".protocol_name").html('<font color="red">*</font><spring:message code="protocol_name"/>:');
$(".protocol_desc").html('<font color="red">*</font><spring:message code="protocol_desc"/>:'); $(".protocol_desc").html('<spring:message code="protocol_desc"/>:');
} }
}); });
}); });