提交 e612c8e2 编写于 作者: 雪洛's avatar 雪洛

fix: 补充缺失的this

上级 075db1c3
...@@ -26,12 +26,12 @@ ...@@ -26,12 +26,12 @@
}, },
methods: { methods: {
appendWebHeadPlaceholder() { appendWebHeadPlaceholder() {
if (src.indexOf('pages/template/navbar-lite/navbar-lite') > -1) { if (this.src.indexOf('pages/template/navbar-lite/navbar-lite') > -1) {
this.webviewContext?.evalJS(` this.webviewContext?.evalJS(`
const uniNavbar = document.querySelector('.uni-navbar'); const uniNavbar = document.querySelector('.uni-navbar');
uniNavbar.style.paddingTop = '${state.headerHeight - 44}px'; uniNavbar.style.paddingTop = '${state.headerHeight - 44}px';
`) `)
} else if (src.indexOf('pages/template/scroll-fold-nav/scroll-fold-nav') > -1) { } else if (this.src.indexOf('pages/template/scroll-fold-nav/scroll-fold-nav') > -1) {
this.webviewContext?.evalJS(` this.webviewContext?.evalJS(`
const heightSeat = document.querySelector('.height-seat'); const heightSeat = document.querySelector('.height-seat');
heightSeat.style.height = '125px'; heightSeat.style.height = '125px';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册