|
|
@@ -14,7 +14,7 @@
|
|
|
<th class="sortable">构建结果</th>
|
|
|
<th class="sortable" data-field="buildBy">构建用户</th>
|
|
|
<th class="sortable" data-field="packagePath">包路径</th>
|
|
|
- <th class="sortable">构建配置</th>
|
|
|
+ <th class="sortable">构建配置快照</th>
|
|
|
<th class="sortable">构建耗时</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
@@ -25,23 +25,24 @@
|
|
|
<td th:text="${item.commitId}">版本 ID</td>
|
|
|
<td th:text="${item.buildTime}">构建时间</td>
|
|
|
<td>
|
|
|
- <a class="open-popup" data-title="构建结果" data-size="1000,500" href="#"
|
|
|
+ <a class="open-popup" data-title="构建结果" data-size="240,180" href="#"
|
|
|
th:attr="data-url=@{'/app/bd/build/result?buildLogId='+${item.buildLogId}}">查看</a>
|
|
|
</td>
|
|
|
<td th:text="${item.buildBy}">构建用户</td>
|
|
|
<td th:text="${item.packagePath}">包路径</td>
|
|
|
<td>
|
|
|
- <a class="open-popup" data-title="构建配置" data-size="1000,500" href="#"
|
|
|
+ <a class="open-popup" data-title="构建配置" data-size="720,480" href="#"
|
|
|
th:attr="data-url=@{'/app/bd/build/config?buildLogId='+${item.buildLogId}}">查看</a>
|
|
|
</td>
|
|
|
<td>
|
|
|
- <a class="open-popup" data-title="构建耗时" data-size="500,200" href="#"
|
|
|
+ <a class="open-popup" data-title="构建耗时" data-size="720,240" href="#"
|
|
|
th:attr="data-url=@{'/app/bd/build/consumed?buildLogId='+${item.buildLogId}}">查看</a>
|
|
|
</td>
|
|
|
<td>
|
|
|
<a class="open-popup" th:attr="data-title=@{${item.appId} + ' 部署列表'}, data-url=@{'/app/bd/deploy?appId=' + ${item.appId} + '&buildLogId=' + ${item.buildLogId}}"
|
|
|
data-size="1000,500" href="#">部署</a>
|
|
|
<a class="ajax-redirect" th:href="@{'/api/app/bd/packageurl/'+${item.buildLogId}}">下载</a>
|
|
|
+ <a class="ajax-delete" th:href="@{'/api/app/bd/delete/'+${item.buildLogId}}">删除</a>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</tbody>
|