Commit 94282bf9 authored by Asjoker's avatar Asjoker

问卷管理-详情细化

parent ce020cd8
......@@ -101,7 +101,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.
<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>
<textarea id="rejectReason" name="question_22" cols="100" rows="3"></textarea>
<textarea id="rejectReason" name="question_22" readonly cols="100" rows="3"></textarea>
</div>
</div>
......
......@@ -9,10 +9,8 @@ function search() {
searchMessage(title);
}
function searchMessage(title) {
console.log(title, '!!!!!!!!!!!!')
var url=webroot+"questionnaire/selectRecordList?questionnaireUuid=1&createBy="+title;
console.log(url, '!!!!!!!!!!!!')
$('#hidden-table-info').DataTable().ajax.url(url).load();
}
......
......@@ -228,7 +228,7 @@ function toValidate() {
}
})
}
return false;
return true;
}
});
});
......@@ -254,7 +254,7 @@ function toValidate() {
}
})
}
return false;
return true;
}
});
});
......@@ -264,15 +264,11 @@ function toValidate() {
return;
}
if (file_list.length<1){
console.log('in1')
console.log(file_list)
validateFlag = false
swal("失败!", '4.填写《关于众创空间运营情况的相关说明》' + ' 存在未填项', "error");
return;
}
if (file_list_2.length<1){
console.log('in2')
console.log(file_list_2)
validateFlag = false
swal("失败!", '11.由财务部门出具的相关证明照片或PDF格式文件' + ' 存在未填项', "error");
return;
......@@ -857,13 +853,13 @@ function file_DIV_List_Show(option){
}
$("#file_DIV_List_Show_15").html(html);
} else if (upload_option === 61){
for(var file_i in file_list){
for(var i in file_list_2){
html += "<div>";
html += "<div class=\"col-sm-8\">";
html += "<label >文件名称:"+file_list_2[file_i].fileName+"</label>";
html += "<label >文件名称:"+file_list_2[i].fileName+"</label>";
html += "</div>";
html += "<div class=\"col-sm-3\">";
html += "<label class=\"project_information_class_hover\" onclick=\"file_DIV_delete_61('"+file_list_2[file_i].id+"')\">删除</label>";
html += "<label class=\"project_information_class_hover\" onclick=\"file_DIV_delete_61('"+file_list_2[i].id+"')\">删除</label>";
html += "</div>";
html += "</div>";
}
......
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