Commit b1c198a1 authored by Asjoker's avatar Asjoker

问卷管理-详情细化

parent f8fde357
...@@ -100,7 +100,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request. ...@@ -100,7 +100,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.
<div class="form-group"> <div class="form-group">
<div class="col-sm-10"> <div class="col-sm-10">
<label class="col-sm-3" style="font-size: 18px;padding-left: 40px">驳回原因 <span class="text-danger">*</span></label> <label id="rejectLabel" class="col-sm-3" style="font-size: 18px;padding-left: 40px">驳回原因 <span class="text-danger">*</span></label>
<textarea id="rejectReason" name="question_22" readonly cols="100" rows="3"></textarea> <textarea id="rejectReason" name="question_22" readonly cols="100" rows="3"></textarea>
</div> </div>
</div> </div>
......
...@@ -16,8 +16,10 @@ var processStatus = 0 ...@@ -16,8 +16,10 @@ var processStatus = 0
// 问卷状态自检 // 问卷状态自检
function StatusCheck() { function StatusCheck() {
if (processStatus === 2){ if (processStatus === 2){
$('#rejectLabel').show();
$('#rejectReason').show(); $('#rejectReason').show();
} else { } else {
$('#rejectLabel').hide();
$('#rejectReason').hide(); $('#rejectReason').hide();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment