增加ssl配置功能
This commit is contained in:
@@ -15,8 +15,8 @@ $(function(){
|
||||
and regionDistrict.regionType eq 2
|
||||
and regionValue eq regionDistrict.configRegionValue}">
|
||||
<!-- regionDistrict.regionType==2表示字符串类配置 -->
|
||||
<input type="hidden" name="${cfgName}[${status.index }].cfgType" value="${regionDistrict.configRegionValue }">
|
||||
<input type="hidden" name="${cfgName}[${status.index }].cfgRegionCode" value="${regionDistrict.configRegionCode }">
|
||||
<input type="hidden" name="${cfgName}.cfgType" value="${regionDistrict.configRegionValue }">
|
||||
<input type="hidden" name="${cfgName}.cfgRegionCode" value="${regionDistrict.configRegionCode }">
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
<div class="row">
|
||||
@@ -32,10 +32,10 @@ $(function(){
|
||||
<spring:message code="keywords" /></label>
|
||||
<div class="col-md-6">
|
||||
<input class="form-control required" type="text"
|
||||
name="${cfgName}[${status.index }].cfgKeywords"
|
||||
name="${cfgName}.cfgKeywords"
|
||||
value="${strCfg.cfgKeywords}">
|
||||
</div>
|
||||
<div for="${cfgName}[${status.index }].cfgKeywords"></div>
|
||||
<div for="${cfgName}.cfgKeywords"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -47,17 +47,17 @@ $(function(){
|
||||
<spring:message code="expression_type" /></label>
|
||||
<div class="col-md-6">
|
||||
<label class="radio-inline"> <input type="radio"
|
||||
name="${cfgName}[${status.index }].exprType" value="1"
|
||||
name="${cfgName}.exprType" value="1"
|
||||
class="required" <c:if test="${strCfg.exprType==1}">checked</c:if>>
|
||||
<spring:message code="and" />
|
||||
</label> <label class="radio-inline"> <input type="radio"
|
||||
name="${cfgName}[${status.index }].exprType" value="0"
|
||||
name="${cfgName}.exprType" value="0"
|
||||
class="required"
|
||||
<c:if test="${strCfg.exprType==0 || strCfg.exprType==null}">checked</c:if>>
|
||||
<spring:message code="null" />
|
||||
</label>
|
||||
</div>
|
||||
<div for="${cfgName}[${status.index }].exprType"></div>
|
||||
<div for="${cfgName}.exprType"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
@@ -65,7 +65,7 @@ $(function(){
|
||||
<label class="control-label col-md-3"><font color="red">*</font>
|
||||
<spring:message code="match_method" /></label>
|
||||
<div class="col-md-6">
|
||||
<select name="${cfgName}[${status.index }].matchMethod"
|
||||
<select name="${cfgName}.matchMethod"
|
||||
class="selectpicker select2 form-control required">
|
||||
<option value=""><spring:message code="select" /></option>
|
||||
<option value="0"
|
||||
@@ -82,7 +82,7 @@ $(function(){
|
||||
code="exactly_match"></spring:message></option>
|
||||
</select>
|
||||
</div>
|
||||
<div for="${cfgName}[${status.index }].matchMethod"></div>
|
||||
<div for="${cfgName}.matchMethod"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -92,7 +92,7 @@ $(function(){
|
||||
<label class="control-label col-md-3"><font color="red">*</font>
|
||||
<spring:message code="whether_hexbinary" /></label>
|
||||
<div class="col-md-6">
|
||||
<select name="${cfgName}[${status.index }].isHexbin"
|
||||
<select name="${cfgName}.isHexbin"
|
||||
class="selectpicker select2 form-control required">
|
||||
<option value=""><spring:message code="select" /></option>
|
||||
<option value="0"
|
||||
@@ -106,7 +106,7 @@ $(function(){
|
||||
code="case_sensitive_nohex"></spring:message></option>
|
||||
</select>
|
||||
</div>
|
||||
<div for="${cfgName}[${status.index }].isHexbin"></div>
|
||||
<div for="${cfgName}.isHexbin"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user