BUG 30116

This commit is contained in:
aixianling
2022-06-08 19:10:03 +08:00
parent 20f797390e
commit 6ef6211ffd
2 changed files with 18 additions and 10 deletions

View File

@@ -23,7 +23,11 @@ export default {
},
methods: {
back() {
uni.navigateBack({delta: 2})
uni.navigateBack({
delta: 2, success() {
location.reload()
}
})
}
},
}
@@ -34,13 +38,16 @@ uni-page-body{
height: 100%;
background-color: #fff;
}
.success {
text-align: center;
img {
width: 192px;
height: 192px;
margin: 96px 0 16px 0;
}
p {
line-height: 50px;
color: #333;
@@ -49,6 +56,7 @@ uni-page-body{
text-align: center;
margin-bottom: 16px;
}
.footer {
width: calc(100% - 96px);
height: 88px;
@@ -63,6 +71,7 @@ uni-page-body{
border-radius: 8px;
margin-left: 48px;
}
.text {
line-height: 44px;
font-size: 28px;

View File

@@ -57,7 +57,6 @@ export default {
}
})
},
itemClick(row) {
uni.navigateTo({url: `./SetGird?id=${row.id}`})
},