Commit 03866160 by Java-李昕颖

添加来访

parent 3d0064d7
......@@ -67,7 +67,7 @@
path += "内容:${report.reportContent}</br>";
path += "附件:</br>";
$("#attachment1").find("[class='attachmentClass']").each(function(){
var url = $(this).attr("href");
var url = $(this).text();
path += url;
});
path += "举报人信息</br>";
......@@ -141,10 +141,10 @@
}
path += "被举报区域:"+ supplementArea +"</br>";
path += "被举报项目:${report.supplementProject}</br>";
path += "内容:${report.reportContent}</br>";
path += "内容:${report.supplementContent}</br>";
path += "附件:</br>";
$("#attachment2").find("[class='attachmentClass']").each(function(){
var url = $(this).attr("href");
var url = $(this).text();
path += url;
});
}
......@@ -153,7 +153,7 @@
path += "处理人:${report.dealPersonName}</br>";
path += "处理成果文件:</br>";
$("#attachment3").find("[class='attachmentClass']").each(function(){
var url = $(this).attr("href");
var url = $(this).text();
path += url;
});
var dealResult = "${report.dealResult}";
......@@ -166,6 +166,7 @@
}
path += "处理结论:"+ dealResult +"</br>";
}
console.log(path);
window.location.href = path;
});
});
......
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