提交 5f2cbd51 编写于 作者: Q qiang

chore: build

上级 8daa1b5c
......@@ -10039,8 +10039,8 @@ function useTopWindow(layoutState) {
} = __uniConfig.topWindow;
const windowRef = vue.ref(null);
function updateWindow() {
const instalce = windowRef.value;
const el = instalce.$el;
const instance = windowRef.value;
const el = uniShared.resolveOwnerEl(instance.$);
const height = el.getBoundingClientRect().height;
layoutState.topWindowHeight = height;
}
......@@ -10058,8 +10058,8 @@ function useLeftWindow(layoutState) {
} = __uniConfig.leftWindow;
const windowRef = vue.ref(null);
function updateWindow() {
const instalce = windowRef.value;
const el = instalce.$el;
const instance = windowRef.value;
const el = uniShared.resolveOwnerEl(instance.$);
const width = el.getBoundingClientRect().width;
layoutState.leftWindowWidth = width;
}
......@@ -10077,8 +10077,8 @@ function useRightWindow(layoutState) {
} = __uniConfig.rightWindow;
const windowRef = vue.ref(null);
function updateWindow() {
const instalce = windowRef.value;
const el = instalce.$el;
const instance = windowRef.value;
const el = uniShared.resolveOwnerEl(instance.$);
const width = el.getBoundingClientRect().width;
layoutState.rightWindowWidth = width;
}
......
......@@ -564,7 +564,7 @@ var safeAreaInsets = {
onChange,
offChange
};
var D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out = safeAreaInsets;
var out = safeAreaInsets;
const onEventPrevent = /* @__PURE__ */ withModifiers(() => {
}, ["prevent"]);
const onEventStop = /* @__PURE__ */ withModifiers(() => {
......@@ -572,7 +572,7 @@ const onEventStop = /* @__PURE__ */ withModifiers(() => {
function getWindowTop() {
const style = document.documentElement.style;
const top = parseInt(style.getPropertyValue("--window-top"));
return top ? top + D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.top : 0;
return top ? top + out.top : 0;
}
function getWindowOffset() {
const style = document.documentElement.style;
......@@ -582,9 +582,9 @@ function getWindowOffset() {
const right = parseInt(style.getPropertyValue("--window-right"));
return {
top,
bottom: bottom ? bottom + D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.bottom : 0,
left: left ? left + D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.left : 0,
right: right ? right + D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.right : 0
bottom: bottom ? bottom + out.bottom : 0,
left: left ? left + out.left : 0,
right: right ? right + out.right : 0
};
}
function updateCssVar(cssVars) {
......@@ -13214,7 +13214,7 @@ function normalizePageMeta(pageMeta) {
}, pageMeta.pullToRefresh));
const { type, style } = navigationBar;
if (style !== "custom" && type !== "transparent") {
pullToRefresh.offset += NAVBAR_HEIGHT + D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.top;
pullToRefresh.offset += NAVBAR_HEIGHT + out.top;
}
pageMeta.pullToRefresh = pullToRefresh;
}
......@@ -15412,7 +15412,7 @@ const getSystemInfoSync = /* @__PURE__ */ defineSyncApi("getSystemInfoSync", ()
const windowWidth = getWindowWidth(screenWidth);
let windowHeight = window.innerHeight;
const language = navigator.language;
const statusBarHeight = D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.top;
const statusBarHeight = out.top;
let osname;
let osversion;
let model;
......@@ -15525,12 +15525,12 @@ const getSystemInfoSync = /* @__PURE__ */ defineSyncApi("getSystemInfoSync", ()
const system = `${osname} ${osversion}`;
const platform = osname.toLocaleLowerCase();
const safeArea = {
left: D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.left,
right: windowWidth - D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.right,
top: D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.top,
bottom: windowHeight - D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.bottom,
width: windowWidth - D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.left - D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.right,
height: windowHeight - D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.top - D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.bottom
left: out.left,
right: windowWidth - out.right,
top: out.top,
bottom: windowHeight - out.bottom,
width: windowWidth - out.left - out.right,
height: windowHeight - out.top - out.bottom
};
const { top: windowTop, bottom: windowBottom } = getWindowOffset();
windowHeight -= windowTop;
......@@ -15550,10 +15550,10 @@ const getSystemInfoSync = /* @__PURE__ */ defineSyncApi("getSystemInfoSync", ()
model,
safeArea,
safeAreaInsets: {
top: D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.top,
right: D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.right,
bottom: D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.bottom,
left: D__DCloud_local_git_uniAppNext_node_modules_safeAreaInsets_out.left
top: out.top,
right: out.right,
bottom: out.bottom,
left: out.left
}
};
});
......@@ -18734,8 +18734,8 @@ function useTopWindow(layoutState) {
} = __uniConfig.topWindow;
const windowRef = ref(null);
function updateWindow() {
const instalce = windowRef.value;
const el = instalce.$el;
const instance2 = windowRef.value;
const el = resolveOwnerEl(instance2.$);
const height = el.getBoundingClientRect().height;
layoutState.topWindowHeight = height;
}
......@@ -18754,8 +18754,8 @@ function useLeftWindow(layoutState) {
} = __uniConfig.leftWindow;
const windowRef = ref(null);
function updateWindow() {
const instalce = windowRef.value;
const el = instalce.$el;
const instance2 = windowRef.value;
const el = resolveOwnerEl(instance2.$);
const width = el.getBoundingClientRect().width;
layoutState.leftWindowWidth = width;
}
......@@ -18774,8 +18774,8 @@ function useRightWindow(layoutState) {
} = __uniConfig.rightWindow;
const windowRef = ref(null);
function updateWindow() {
const instalce = windowRef.value;
const el = instalce.$el;
const instance2 = windowRef.value;
const el = resolveOwnerEl(instance2.$);
const width = el.getBoundingClientRect().width;
layoutState.rightWindowWidth = width;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册