修复keyring导出缺少 CRL列、再次颁发有效期(天)可填写小数的bug
This commit is contained in:
@@ -25,6 +25,7 @@ public class PxyObjKeyring extends BaseCfg<PxyObjKeyring> {
|
||||
@ExcelField(title="expire_after",sort=5)
|
||||
private Integer expireAfter;
|
||||
private String publicKeyAlgo;
|
||||
@ExcelField(title="crl",sort=5)
|
||||
private String crl;
|
||||
@ExcelField(title="issuer",sort=6)
|
||||
private String issuer;
|
||||
|
||||
@@ -339,7 +339,7 @@ function privateFileValidate(){
|
||||
<div class="form-group">
|
||||
<label class="control-label col-md-3"><font color="red">*</font><spring:message code="expire_after"/></label>
|
||||
<div class="col-md-6">
|
||||
<input class="form-control required number" type="text" min="1" name="expireAfter" value="${_cfg.expireAfter}">
|
||||
<input class="form-control required number" type="text" min="1" name="expireAfter" value="${_cfg.expireAfter}" onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}" onafterpaste="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}" oninput="if(this.value>2147483647)this.value=2147483647">
|
||||
</div>
|
||||
<div for="expireAfter"></div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user