Commit b91af5c5 by 展昭

update

parent 61d4dfe0
Showing with 10 additions and 3 deletions
......@@ -419,10 +419,15 @@ export default {
}
},
setBarHeight() {
window.WebViewJavascriptBridge.callHandler("getBarHeight", null, function(
initJsBridge(() => {
window.WebViewJavascriptBridge.callHandler(
"getBarHeight",
null,
function(response) {
console.log(
"billindex getBarHeight来自 ios/android的回传数据: ",
response
) {
console.log("billindex getBarHeight来自 ios/android的回传数据: ", response);
);
if (response) {
response = JSON.parse(response);
const barHeight = response.statusBarHeight;
......@@ -443,6 +448,8 @@ export default {
"padding-top:" + conHeight + "px !important"
);
}
}
);
});
},
closeWebView() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment