修复页面错误

This commit is contained in:
yizhaorong
2019-08-19 20:03:07 +08:00
parent 45489c6fae
commit 653a07938b
3 changed files with 21 additions and 4 deletions
+16
View File
@@ -1144,4 +1144,20 @@ body {
.apps-app-info .middle-wrapper input {
background-color: #f6f6f6
}
.guide {
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
z-index:-1;
}
.guide > img {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
border:0;
}
+1 -1
View File
@@ -143,7 +143,7 @@ $(function () {
$(".app-delete").click(function () {
var url = "/p/delete/" + $(this).attr("data");
$.post(url, data, function(result){
$.post(url, function(result){
window.location.href = window.location.href
window.location.reload
});
+4 -3
View File
@@ -20,9 +20,10 @@
设备ID
</h4>
</a>
<a class="list-group-item" href="#" th:each="device,appStat : ${app.devices}">
[[${device}]]
</a>
<div th:each="device,appStat : ${app.devices}">
<h5>[[${device}]]</h5>
<hr />
</div>
</div>
</div>
</body>