提交 85c9e42c 编写于 作者: D DCloud_LXH

chore(app): darkmode parse routeOptions

上级 84f94c7e
......@@ -36,14 +36,14 @@ export function parseWebviewStyle (id, path, _routeOptions = {}) {
)
)
Object.keys(_routeOptions.window).forEach(name => {
const routeOptions = parseTheme(_routeOptions)
Object.keys(routeOptions.window).forEach(name => {
if (WEBVIEW_STYLE_BLACKLIST.indexOf(name) === -1) {
webviewStyle[name] = _routeOptions.window[name]
webviewStyle[name] = routeOptions.window[name]
}
})
const routeOptions = parseTheme(_routeOptions)
const backgroundColor = routeOptions.window.backgroundColor
if (
/^#[a-z0-9]{6}$/i.test(backgroundColor) ||
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册