Commit 962876f0 by huangfusuper

调整模板引擎

parent 6cb1b189
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org"> <html lang="en" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8"/>
<title>工作流执行报告</title> <title>工作流执行报告</title>
</head> </head>
<body> <body>
<table border='1' width='80%' align='center' cellspacing='0' cellpadding='6'> <table border='1' width='80%' align='center' cellspacing='0' cellpadding='6'>
<div style="margin-bottom: 20px"> <div style="margin-bottom: 20px;">
<h1 style='text-align:center;color:red'>工作流执行报告</h1> <h1 style='text-align:center;color:red;'>工作流执行报告</h1>
<br/> <br/>
<span style="margin-left: 10%;font-size: 16px;color: #646256" th:text="'工作流名称:'+${title}"></span> <span style="margin-left: 10%;font-size: 16px;color: #646256;" th:text="'工作流名称:'+${title}"></span>
<span style="margin-left: 10%;font-size: 16px;color: #646256" th:text="'总耗时:'+${flowConsumeDate}"></span> <span style="margin-left: 10%;font-size: 16px;color: #646256;" th:text="'总耗时:'+${flowConsumeDate}"></span>
<span style="float:right;margin-right: 11%;font-size: 16px;color: #646256" th:text="'环境:'+${env}"></span> <span style="float:right;margin-right: 11%;font-size: 16px;color: #646256;" th:text="'环境:'+${env}"></span>
</div> </div>
<thead align='center' style='background: blue;color: #fff'> <thead align='center' style='background: blue;color: #fff'>
<th width = '10%'>节点名称</th> <th width = '10%'>节点名称</th>
<th width = '20%'>开始时间</th> <th width = '20%'>开始时间</th>
<th width = '20%'>结束时间</th> <th width = '20%'>结束时间</th>
<th width = '10%'>耗费时间</th> <th width = '10%'>耗费时间</th>
<th width = '10%'>运行结果</th> <th width = '10%'>运行结果</th>
<th width = '30%'>日志远程路径</th> <th width = '30%'>日志远程路径</th>
</thead> </thead>
<tbody> <tbody>
<tr th:each="email : ${data}"> <tr th:each="email : ${data}">
<th th:text="${email.nodeName}"></th> <th th:text="${email.nodeName}"></th>
<th th:text="${email.startDate}"></th> <th th:text="${email.startDate}"></th>
<th th:text="${email.endDate}"></th> <th th:text="${email.endDate}"></th>
<th th:text="${email.consuming}"></th> <th th:text="${email.consuming}"></th>
<th th:text="${email.runStatus}"></th> <th th:text="${email.runStatus}"></th>
<th> <th>
<dev th:each="logPath : ${email.logPaths}"> <dev th:each="logPath : ${email.logPaths}">
<a th:href="@{${logPath}}" th:text="${logPath}"></a><br/> <a th:href="@{${logPath}}" th:text="${logPath}"></a><br/>
</dev> </dev>
</th> </th>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</body> </body>
</html> </html>
\ No newline at end of file
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