IP类配置提交

This commit is contained in:
wangxin
2018-02-25 18:43:20 +08:00
parent 1c93923000
commit 6647314e2b
16 changed files with 1411 additions and 107 deletions

View File

@@ -5,11 +5,14 @@
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="control-label col-md-3">来函函号</label>
<label class="control-label col-md-3">来函</label>
<div class="col-md-8">
<select class="form-control">
<option>Country 1</option>
<option>Country 2</option>
<select name="requestId" data-live-search="true" data-live-search-placeholder="搜索" class="selectpicker form-control" title="--请选择--">
<c:forEach items="${requestInfos}" var="requestInfo">
<option value="${requestInfo.id}"
<c:if test="${requestInfo.isValid==0 or requestInfo.isAudit==3}">disabled="disabled"</c:if>
<c:if test="${requestInfo.id==_ipCfg.requestId}">selected</c:if>>${requestInfo.requestTitle}</option>
</c:forEach>
</select>
</div>
</div>
@@ -17,12 +20,16 @@
<!--/span-->
<div class="col-md-6">
<div class="form-group">
<label class="control-label col-md-3">专项任务</label>
<label class="control-label col-md-3">分类</label>
<div class="col-md-8">
<select class="form-control">
<option>Country 1</option>
<option>Country 2</option>
</select>
<select name="classify" multiple class="selectpicker form-control" title="--请选择--">
<c:forEach items="${fls}" var="fl">
<option value="${fl.item_code}"
<c:if test="${fl.isValid==0}">disabled="disabled"</c:if>
<c:if test="${fl.item_code==_ipCfg.classify}">selected</c:if>
>${fl.item_value}</option>
</c:forEach>
</select>
</div>
</div>
</div>
@@ -32,12 +39,16 @@
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="control-label col-md-3">分类性质</label>
<label class="control-label col-md-3">性质</label>
<div class="col-md-8">
<select class="form-control">
<option>Country 1</option>
<option>Country 2</option>
</select>
<select name="attribute" multiple class="selectpicker form-control" title="--请选择--">
<c:forEach items="${xzs}" var="xz">
<option value="${xz.item_code}"
<c:if test="${xz.isValid==0}">disabled="disabled"</c:if>
<c:if test="${xz.item_code==_ipCfg.attribute}">selected</c:if>
>${xz.item_value}</option>
</c:forEach>
</select>
</div>
</div>
</div>
@@ -45,10 +56,14 @@
<div class="form-group">
<label class="control-label col-md-3">标签</label>
<div class="col-md-8">
<select class="form-control">
<option>Country 1</option>
<option>Country 2</option>
</select>
<select name="lable" multiple class="selectpicker form-control" title="--请选择--">
<c:forEach items="${lables}" var="lable">
<option value="${lable.item_code}"
<c:if test="${lable.isValid==0}">disabled="disabled"</c:if>
<c:if test="${lable.item_code==_ipCfg.label}">selected</c:if>
>${lable.item_value}</option>
</c:forEach>
</select>
</div>
</div>
</div>