|
|
@@ -704,13 +704,15 @@
|
|
704
|
704
|
'<td class="text-center">' + n.F_CreateTime + '</td>' +
|
|
705
|
705
|
'<td class="text-center">';
|
|
706
|
706
|
//办理情况附件
|
|
|
707
|
+ var FileHtml;
|
|
707
|
708
|
$(n.File).each(function(j, m) {
|
|
708
|
|
- htmls += '<a style="margin-right:5px;" href="' + m.F_FileUrl + '" download="' + m.F_FileName.substring(19) + '">' + m.F_FileName.substring(19) + '</a>';
|
|
|
709
|
+ if( m.F_FileType==".jpg"|| m.F_FileType==".png"){
|
|
|
710
|
+ FileHtml='<img style="width:15px; height:15px" border="0" src="'+m.F_FileUrl+'" alt="'+m.F_FileName+'">'
|
|
|
711
|
+ }else{
|
|
|
712
|
+ FileHtml=m.F_FileName.substring(19)
|
|
|
713
|
+ }
|
|
|
714
|
+ htmls += '<a style="margin-right:5px;" target="view_window" href="' + m.F_FileUrl + '" download="' + m.F_FileName + '">' +m.F_FileName.substring(19)+ '</a>';
|
|
709
|
715
|
})
|
|
710
|
|
-
|
|
711
|
|
-// htmls += '</td>' +
|
|
712
|
|
-// '<td class="text-center authority"><botton class="btns BLQKS " dealman="' + n.UserName + '" result="' + n.F_Result + '" type="" index="' + n.F_Id + '">修改</botton></td>' +
|
|
713
|
|
-// '</tr>';
|
|
714
|
716
|
})
|
|
715
|
717
|
$(htmls).appendTo($(".BLQK"));
|
|
716
|
718
|
|
|
|
@@ -873,7 +875,7 @@
|
|
873
|
875
|
'<td class="text-center">';
|
|
874
|
876
|
//办理情况附件
|
|
875
|
877
|
$(n.File).each(function(j, m) {
|
|
876
|
|
- str += '<a style="margin-right:5px;" href="' + m.F_FileUrl + '" download="' + m.F_FileUrl + '">' + m.F_FileName.substring(19) + '</a>';
|
|
|
878
|
+ str += '<a style="margin-right:5px;" target="view_window" href="' + m.F_FileUrl + '" download="' + m.F_FileUrl + '">' + m.F_FileName.substring(19) + '</a>';
|
|
877
|
879
|
})
|
|
878
|
880
|
str += '</td>' +
|
|
879
|
881
|
'<td class="text-center authority"><botton class="btns LDPSS " superuser="' + n.F_BatchReason + '" superopinion="' + n.F_SuperOpinion + '" type="' + n.F_Type + '" index="' + n.F_Id + '">修改</botton></td>' +
|
|
|
@@ -891,7 +893,7 @@
|
|
891
|
893
|
'<td class="text-center">';
|
|
892
|
894
|
//办理情况附件
|
|
893
|
895
|
$(n.File).each(function(j, m) {
|
|
894
|
|
- str += '<a style="margin-right:5px;" href="' + m.F_FileUrl + '" download="' + m.F_FileUrl + '">' + m.F_FileName.substring(19) + '</a>';
|
|
|
896
|
+ str += '<a style="margin-right:5px;" target="view_window" href="' + m.F_FileUrl + '" download="' + m.F_FileUrl + '">' + m.F_FileName.substring(19) + '</a>';
|
|
895
|
897
|
})
|
|
896
|
898
|
str += '</td>' +
|
|
897
|
899
|
'<td class="text-center authority"><botton class="btns LDPSS " superuser="' + n.F_BatchReason + '" superopinion="' + n.F_SuperOpinion + '" type="' + n.F_Type + '" index="' + n.F_Id + '">修改</botton></td>' +
|