|
@@ -38,9 +38,6 @@ export default {
|
|
|
disabled: false
|
|
|
}
|
|
|
},
|
|
|
- onReady() {
|
|
|
- this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
|
|
|
- },
|
|
|
onLoad(e) {
|
|
|
this.form = {
|
|
|
resultGoodId: e.resultGoodId,
|
|
@@ -48,6 +45,14 @@ export default {
|
|
|
}
|
|
|
this.userInfo = JSON.parse(e.userInfo)
|
|
|
},
|
|
|
+ onReady() {
|
|
|
+ uni.getSystemInfo({
|
|
|
+ success: (res) => {
|
|
|
+ this.statusBarHeight = res.statusBarHeight
|
|
|
+ console.log(res);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
methods: {
|
|
|
// 返回
|
|
|
getBack() {
|