Commit b4539e5a authored by Asjoker's avatar Asjoker

问卷管理-详情细化

parent b1c198a1
......@@ -227,9 +227,9 @@ public class QuestionnaireCtrl {
} else if (educationQuestionnaireInformation_list_i.getProcessStatus() == 1){
map_temp_i.put("processStatus","待审核");
} else if (educationQuestionnaireInformation_list_i.getProcessStatus() == 2){
map_temp_i.put("processStatus","驳回");
map_temp_i.put("processStatus","驳回");
} else {
map_temp_i.put("processStatus","通过");
map_temp_i.put("processStatus","通过");
}
map_temp_i.put("editable", html_table);
object_temp.add(map_temp_i);
......
......@@ -724,7 +724,7 @@
<div class="row">
<label class="col-sm-3" style="font-size: 18px;padding-left: 40px">11.2021年创新创业工作经费(万元) <span class="text-danger">*</span></label>
<div class="col-sm-4">
<div class="form-control" id="option_60"></div>
<div class="form-control" name="option_60"></div>
<label class="grayTip">仅支持2位小数, 如1234.00</label>
</div>
</div>
......@@ -1321,7 +1321,7 @@
<div class="form-group">
<div class="col-sm-10">
<label class="col-sm-3" style="font-size: 18px;padding-left: 40px">驳回原因 <span class="text-danger">*</span></label>
<label class="col-sm-3" id="rejectLabel" style="font-size: 18px;padding-left: 40px">驳回原因 <span class="text-danger">*</span></label>
<textarea id="rejectReason" name="question_22" cols="100" rows="3"></textarea>
</div>
</div>
......
......@@ -234,7 +234,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.
<label class="col-sm-3 control-label">填写《关于众创空间运营情况的相关说明》(见附件),打印并加盖众创空间直属部门公章后上传 <span class="text-danger">*</span></label>
<div class="col-sm-4">
<a class="btn btn-primary" onclick="file_DIV_Show('0', 15)" id="upload_situation"><strong>添加</strong></a>
<a class="btn btn-primary" onclick="downloadMultiFiles(15)"><strong>下载</strong></a>
<a class="btn btn-primary" id="download_15" onclick="downloadMultiFiles(15)"><strong>下载</strong></a>
</div>
</div>
<div class="row" style="margin-top: 15px">
......@@ -836,7 +836,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.
<label class="col-sm-3 control-label">由财务部门出具的相关证明照片或PDF格式文件 <span class="text-danger">*</span></label>
<div class="col-sm-4">
<a class="btn btn-primary" onclick="file_DIV_Show('0', 61)" id="upload_badget"><strong>添加</strong></a>
<a class="btn btn-primary" onclick="downloadMultiFiles(61)"><strong>下载</strong></a>
<a class="btn btn-primary" id="download_61" onclick="downloadMultiFiles(61)"><strong>下载</strong></a>
<label class="grayTip">支持格式: .jpg、 .gif、 .pdf</label>
</div>
......
......@@ -19,7 +19,14 @@ var oTable;
function StatusCheck() {
if (processStatus === 1){
$('#goback_btn').hide()
}else if (processStatus === 2 || processStatus === 3){
}else if (processStatus === 2){
$('#tempSave_btn').hide()
$('#pass_btn').hide()
$('#reject_btn').hide()
$('textarea[name*="question_"]').prop('readonly', true)
} else if (processStatus === 3){
$('#rejectLabel').hide();
$('#rejectReason').hide();
$('#tempSave_btn').hide()
$('#pass_btn').hide()
$('#reject_btn').hide()
......
......@@ -298,6 +298,9 @@ function all_order() {
seventeen_order();
eighteen_order();
nineteen_order();
$('#download_15').hide();
$('#download_61').hide();
}
// 各表格序号计数方法
......@@ -621,6 +624,12 @@ function getSaveData() {
if (item.optionsId === 8){
tempImgList.push(item);
}
if (item.optionsId === 15){
$('#download_15').show();
}
if (item.optionsId === 61){
$('#download_61').show();
}
})
img_DIV_List_Show();
......
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