提交 1872e8df 编写于 作者: D DCloud_LXH

chore: build

上级 e94fac0a
因为 它太大了无法显示 source diff 。你可以改为 查看blob
...@@ -4226,8 +4226,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({ ...@@ -4226,8 +4226,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({
const res = resolveDigitDecimalPoint(event, cache); const res = resolveDigitDecimalPoint(event, cache);
if (typeof res === "boolean") if (typeof res === "boolean")
return res; return res;
if (cache.value === input.value)
return false;
cache.value = input.value; cache.value = input.value;
} }
const maxlength = state2.maxlength; const maxlength = state2.maxlength;
...@@ -9157,14 +9155,8 @@ function initPage(vm) { ...@@ -9157,14 +9155,8 @@ function initPage(vm) {
case "navigationStyle": case "navigationStyle":
pageMeta.navigationBar.style = style[key]; pageMeta.navigationBar.style = style[key];
break; break;
case "disableScroll": default:
pageMeta.disableScroll = style[key]; pageMeta[key] = style[key];
break;
case "enablePullDownRefresh":
pageMeta.enablePullDownRefresh = style[key];
break;
case "onReachBottomDistance":
pageMeta.onReachBottomDistance = style[key];
break; break;
} }
} }
...@@ -9177,7 +9169,8 @@ function initPage(vm) { ...@@ -9177,7 +9169,8 @@ function initPage(vm) {
navigationStyle: pageMeta.navigationBar.style || "default", navigationStyle: pageMeta.navigationBar.style || "default",
disableScroll: pageMeta.disableScroll || false, disableScroll: pageMeta.disableScroll || false,
enablePullDownRefresh: pageMeta.enablePullDownRefresh || false, enablePullDownRefresh: pageMeta.enablePullDownRefresh || false,
onReachBottomDistance: pageMeta.onReachBottomDistance || uniShared.ON_REACH_BOTTOM_DISTANCE onReachBottomDistance: pageMeta.onReachBottomDistance || uniShared.ON_REACH_BOTTOM_DISTANCE,
backgroundColorContent: pageMeta.backgroundColorContent
}); });
} }
currentPagesMap.set(normalizeRouteKey(page.path, page.id), vm); currentPagesMap.set(normalizeRouteKey(page.path, page.id), vm);
......
...@@ -10395,8 +10395,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({ ...@@ -10395,8 +10395,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({
const res = resolveDigitDecimalPoint(event, cache); const res = resolveDigitDecimalPoint(event, cache);
if (typeof res === "boolean") if (typeof res === "boolean")
return res; return res;
if (cache.value === input.value)
return false;
cache.value = input.value; cache.value = input.value;
} }
const maxlength = state22.maxlength; const maxlength = state22.maxlength;
...@@ -17357,14 +17355,8 @@ function initPage(vm) { ...@@ -17357,14 +17355,8 @@ function initPage(vm) {
case "navigationStyle": case "navigationStyle":
pageMeta.navigationBar.style = style[key]; pageMeta.navigationBar.style = style[key];
break; break;
case "disableScroll": default:
pageMeta.disableScroll = style[key]; pageMeta[key] = style[key];
break;
case "enablePullDownRefresh":
pageMeta.enablePullDownRefresh = style[key];
break;
case "onReachBottomDistance":
pageMeta.onReachBottomDistance = style[key];
break; break;
} }
} }
...@@ -17377,7 +17369,8 @@ function initPage(vm) { ...@@ -17377,7 +17369,8 @@ function initPage(vm) {
navigationStyle: pageMeta.navigationBar.style || "default", navigationStyle: pageMeta.navigationBar.style || "default",
disableScroll: pageMeta.disableScroll || false, disableScroll: pageMeta.disableScroll || false,
enablePullDownRefresh: pageMeta.enablePullDownRefresh || false, enablePullDownRefresh: pageMeta.enablePullDownRefresh || false,
onReachBottomDistance: pageMeta.onReachBottomDistance || ON_REACH_BOTTOM_DISTANCE onReachBottomDistance: pageMeta.onReachBottomDistance || ON_REACH_BOTTOM_DISTANCE,
backgroundColorContent: pageMeta.backgroundColorContent
}); });
} }
currentPagesMap.set(normalizeRouteKey(page.path, page.id), vm); currentPagesMap.set(normalizeRouteKey(page.path, page.id), vm);
......
...@@ -3586,8 +3586,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({ ...@@ -3586,8 +3586,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({
const res = resolveDigitDecimalPoint(event, cache); const res = resolveDigitDecimalPoint(event, cache);
if (typeof res === "boolean") if (typeof res === "boolean")
return res; return res;
if (cache.value === input.value)
return false;
cache.value = input.value; cache.value = input.value;
} }
const maxlength = state2.maxlength; const maxlength = state2.maxlength;
......
...@@ -9762,8 +9762,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({ ...@@ -9762,8 +9762,6 @@ const Input = /* @__PURE__ */ defineBuiltInComponent({
const res = resolveDigitDecimalPoint(event, cache); const res = resolveDigitDecimalPoint(event, cache);
if (typeof res === "boolean") if (typeof res === "boolean")
return res; return res;
if (cache.value === input.value)
return false;
cache.value = input.value; cache.value = input.value;
} }
const maxlength = state22.maxlength; const maxlength = state22.maxlength;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册