Authored by qinchao

增加字段:上传cdn分支

... ... @@ -148,13 +148,14 @@
<div class="form-group" id = "uploadCDN_div" style="display: none">
<label class="col-sm-1 control-label"><strong>上传CDN和分支:</strong></label>
<div class="col-sm-8">
<div class="col-sm-1" style="width: 110px;">
<select id="uploadCDN" name="uploadCDN" class="form-control" style="width: 100px;height:40px">
<option value="0"></option>
<option value="1"></option>
</select>
<input id="cdnBranch" name="cdnBranch" type="text" value="master" class="form-control" style="padding-left:10px;width: 100px;float:left" placeHolder="上传cdn的分支"/>
</div>
<div class="col-sm-7" style="width: 200px;">
<input id="cdnBranch" name="cdnBranch" type="text" class="form-control" style="padding-left:10px;float:left" placeHolder="上传cdn的分支"/>
</div>
... ...
... ... @@ -118,23 +118,22 @@
</div>
</div>
<div class="form-group">
<label class="col-sm-6 control-label"><strong>上传CDN:</strong></label>
<div class="col-sm-8">
<label class="col-sm-6 control-label"><strong>上传CDN和分支:</strong></label>
<div class="col-sm-1" style="width:100px;">
<input type="text" class="form-control"
<c:if test="${workJob.uploadCDN == 0}">value="否"</c:if>
<c:if test="${workJob.uploadCDN == 1}">value="是"</c:if>
style='border-left:0px;border-top:0px;border-right:0px;border-bottom:1px '
readonly="readonly"/>
style='width:100%!important;border-left:0px;border-top:0px;border-right:0px;border-bottom:1px; '
readonly="readonly" />
</div>
</div>
<div class="form-group">
<label class="col-sm-6 control-label"><strong>上传CDN分支:</strong></label>
<div class="col-sm-8">
<div class="col-sm-7" style="width:200px;">
<input type="text" class="form-control" value="${workJob.cdnBranch}"
style='border-left:0px;border-top:0px;border-right:0px;border-bottom:1px '
style='width:100%!important;border-left:0px;border-top:0px;border-right:0px;border-bottom:1px '
readonly="readonly"/>
</div>
</div>
</c:when>
<c:otherwise>
... ...