|
@@ -23,8 +23,10 @@ export default {
|
|
|
checked: false
|
|
|
}
|
|
|
},
|
|
|
- mounted(e) {
|
|
|
- this.getDetail(e.id)
|
|
|
+ onLoad(e) {
|
|
|
+ if (e.id) {
|
|
|
+ this.getDetail(e.id)
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
getDetail(e) {
|
|
@@ -73,7 +75,7 @@ uni-image {
|
|
|
content: '';
|
|
|
display: block;
|
|
|
height: 232rpx;
|
|
|
- background: rgba(18,18,18,0.4);
|
|
|
+ background: rgba(18, 18, 18, 0.4);
|
|
|
backdrop-filter: blur(16rpx);
|
|
|
}
|
|
|
|