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

chore: build

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