Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
516ff43a
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
516ff43a
编写于
4月 23, 2021
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: add __UNI_FEATURE_RPX__
上级
e9fa8d40
变更
15
展开全部
隐藏空白更改
内联
并排
Showing
15 changed file
with
298 addition
and
306 deletion
+298
-306
packages/global.d.ts
packages/global.d.ts
+1
-0
packages/uni-core/src/helpers/dom.ts
packages/uni-core/src/helpers/dom.ts
+86
-0
packages/uni-core/src/helpers/event.ts
packages/uni-core/src/helpers/event.ts
+0
-5
packages/uni-core/src/helpers/getWindowOffset.ts
packages/uni-core/src/helpers/getWindowOffset.ts
+0
-15
packages/uni-core/src/helpers/index.ts
packages/uni-core/src/helpers/index.ts
+1
-3
packages/uni-core/src/helpers/updateCssVar.ts
packages/uni-core/src/helpers/updateCssVar.ts
+0
-28
packages/uni-core/src/view/plugin/componentInstance.ts
packages/uni-core/src/view/plugin/componentInstance.ts
+3
-6
packages/uni-h5-vue/dist/vue.runtime.esm.js
packages/uni-h5-vue/dist/vue.runtime.esm.js
+5
-1
packages/uni-h5-vue/lib/vue.runtime.esm.js
packages/uni-h5-vue/lib/vue.runtime.esm.js
+5
-1
packages/uni-h5/dist/uni-h5.esm.js
packages/uni-h5/dist/uni-h5.esm.js
+179
-183
packages/uni-h5/src/framework/components/layout/index.tsx
packages/uni-h5/src/framework/components/layout/index.tsx
+10
-16
packages/uni-h5/src/framework/components/page/pageHead.tsx
packages/uni-h5/src/framework/components/page/pageHead.tsx
+3
-4
packages/uni-h5/src/helpers/dom.ts
packages/uni-h5/src/helpers/dom.ts
+0
-43
packages/vite-plugin-uni/src/configResolved/plugins/pagesJson.ts
...s/vite-plugin-uni/src/configResolved/plugins/pagesJson.ts
+1
-1
packages/vite-plugin-uni/src/utils/define.ts
packages/vite-plugin-uni/src/utils/define.ts
+4
-0
未找到文件。
packages/global.d.ts
浏览文件 @
516ff43a
...
@@ -15,6 +15,7 @@ declare var __VUE_OPTIONS_API__: boolean
...
@@ -15,6 +15,7 @@ declare var __VUE_OPTIONS_API__: boolean
declare
var
__UNI_FEATURE_WX__
:
boolean
declare
var
__UNI_FEATURE_WX__
:
boolean
declare
var
__UNI_FEATURE_WXS__
:
boolean
declare
var
__UNI_FEATURE_WXS__
:
boolean
declare
var
__UNI_FEATURE_RPX__
:
boolean
declare
var
__UNI_FEATURE_NVUE__
:
boolean
declare
var
__UNI_FEATURE_NVUE__
:
boolean
declare
var
__UNI_FEATURE_PROMISE__
:
boolean
declare
var
__UNI_FEATURE_PROMISE__
:
boolean
declare
var
__UNI_FEATURE_LONGPRESS__
:
boolean
declare
var
__UNI_FEATURE_LONGPRESS__
:
boolean
...
...
packages/uni-core/src/helpers/dom.ts
0 → 100644
浏览文件 @
516ff43a
import
{
withModifiers
}
from
'
vue
'
import
safeAreaInsets
from
'
safe-area-insets
'
export
const
onTouchmovePrevent
=
/*#__PURE__*/
withModifiers
(()
=>
{},
[
'
prevent
'
,
])
export
const
onTouchmoveStop
=
/*#__PURE__*/
withModifiers
(()
=>
{},
[
'
stop
'
])
export
function
getWindowOffset
()
{
const
style
=
document
.
documentElement
.
style
const
top
=
parseInt
(
style
.
getPropertyValue
(
'
--window-top
'
))
const
bottom
=
parseInt
(
style
.
getPropertyValue
(
'
--window-bottom
'
))
const
left
=
parseInt
(
style
.
getPropertyValue
(
'
--window-left
'
))
const
right
=
parseInt
(
style
.
getPropertyValue
(
'
--window-right
'
))
return
{
top
:
top
?
top
+
safeAreaInsets
.
top
:
0
,
bottom
:
bottom
?
bottom
+
safeAreaInsets
.
bottom
:
0
,
left
:
left
?
left
+
safeAreaInsets
.
left
:
0
,
right
:
right
?
right
+
safeAreaInsets
.
right
:
0
,
}
}
interface
PageCssVars
{
'
--window-top
'
?:
string
'
--window-bottom
'
?:
string
'
--window-left
'
?:
string
'
--window-right
'
?:
string
'
--window-margin
'
?:
string
'
--top-window-height
'
?:
string
}
const
style
=
document
.
documentElement
.
style
export
function
updateCssVar
(
cssVars
:
Record
<
string
,
any
>
)
{
Object
.
keys
(
cssVars
).
forEach
((
name
)
=>
{
style
.
setProperty
(
name
,
cssVars
[
name
])
})
}
export
function
updatePageCssVar
(
cssVars
:
PageCssVars
)
{
return
updateCssVar
(
cssVars
)
}
interface
AppCssVar
{
'
--status-bar-height
'
?:
string
'
--tab-bar-height
'
?:
string
}
export
function
updateAppCssVar
(
cssVars
:
AppCssVar
)
{
return
updateCssVar
(
cssVars
)
}
const
sheetsMap
=
new
Map
()
export
function
updateStyle
(
id
:
string
,
content
:
string
)
{
let
style
=
sheetsMap
.
get
(
id
)
if
(
style
&&
!
(
style
instanceof
HTMLStyleElement
))
{
removeStyle
(
id
)
style
=
undefined
}
if
(
!
style
)
{
style
=
document
.
createElement
(
'
style
'
)
style
.
setAttribute
(
'
type
'
,
'
text/css
'
)
style
.
innerHTML
=
content
document
.
head
.
appendChild
(
style
)
}
else
{
style
.
innerHTML
=
content
}
sheetsMap
.
set
(
id
,
style
)
}
export
function
removeStyle
(
id
:
string
)
{
let
style
=
sheetsMap
.
get
(
id
)
if
(
style
)
{
if
(
style
instanceof
CSSStyleSheet
)
{
// @ts-ignore
const
index
=
document
.
adoptedStyleSheets
.
indexOf
(
style
)
// @ts-ignore
document
.
adoptedStyleSheets
=
document
.
adoptedStyleSheets
.
filter
(
(
s
:
CSSStyleSheet
)
=>
s
!==
style
)
}
else
{
document
.
head
.
removeChild
(
style
)
}
sheetsMap
.
delete
(
id
)
}
}
packages/uni-core/src/helpers/event.ts
已删除
100644 → 0
浏览文件 @
e9fa8d40
import
{
withModifiers
}
from
'
vue
'
export
const
onTouchmovePrevent
=
/*#__PURE__*/
withModifiers
(()
=>
{},
[
'
prevent
'
,
])
export
const
onTouchmoveStop
=
/*#__PURE__*/
withModifiers
(()
=>
{},
[
'
stop
'
])
packages/uni-core/src/helpers/getWindowOffset.ts
已删除
100644 → 0
浏览文件 @
e9fa8d40
import
safeAreaInsets
from
'
safe-area-insets
'
export
function
getWindowOffset
()
{
const
style
=
document
.
documentElement
.
style
const
top
=
parseInt
(
style
.
getPropertyValue
(
'
--window-top
'
))
const
bottom
=
parseInt
(
style
.
getPropertyValue
(
'
--window-bottom
'
))
const
left
=
parseInt
(
style
.
getPropertyValue
(
'
--window-left
'
))
const
right
=
parseInt
(
style
.
getPropertyValue
(
'
--window-right
'
))
return
{
top
:
top
?
top
+
safeAreaInsets
.
top
:
0
,
bottom
:
bottom
?
bottom
+
safeAreaInsets
.
bottom
:
0
,
left
:
left
?
left
+
safeAreaInsets
.
left
:
0
,
right
:
right
?
right
+
safeAreaInsets
.
right
:
0
,
}
}
packages/uni-core/src/helpers/index.ts
浏览文件 @
516ff43a
export
*
from
'
./dom
'
export
*
from
'
./util
'
export
*
from
'
./util
'
export
*
from
'
./icon
'
export
*
from
'
./icon
'
export
*
from
'
./event
'
export
*
from
'
./scroll
'
export
*
from
'
./scroll
'
export
*
from
'
./getRealRoute
'
export
*
from
'
./getRealRoute
'
export
*
from
'
./updateCssVar
'
export
*
from
'
./getWindowOffset
'
packages/uni-core/src/helpers/updateCssVar.ts
已删除
100644 → 0
浏览文件 @
e9fa8d40
interface
PageCssVars
{
'
--window-top
'
?:
string
'
--window-bottom
'
?:
string
'
--window-left
'
?:
string
'
--window-right
'
?:
string
'
--window-margin
'
?:
string
'
--top-window-height
'
?:
string
}
const
style
=
document
.
documentElement
.
style
function
updateCssVar
(
cssVars
:
Record
<
string
,
any
>
)
{
Object
.
keys
(
cssVars
).
forEach
((
name
)
=>
{
style
.
setProperty
(
name
,
cssVars
[
name
])
})
}
export
function
updatePageCssVar
(
cssVars
:
PageCssVars
)
{
return
updateCssVar
(
cssVars
)
}
interface
AppCssVar
{
'
--status-bar-height
'
?:
string
'
--tab-bar-height
'
?:
string
}
export
function
updateAppCssVar
(
cssVars
:
AppCssVar
)
{
return
updateCssVar
(
cssVars
)
}
packages/uni-core/src/view/plugin/componentInstance.ts
浏览文件 @
516ff43a
import
{
ComponentPublicInstance
}
from
'
vue
'
import
{
ComponentPublicInstance
}
from
'
vue
'
import
{
normalizeTarget
}
from
'
@dcloudio/uni-shared
'
import
{
normalizeTarget
}
from
'
@dcloudio/uni-shared
'
import
{
getWindowOffset
}
from
'
../../helpers
/getWindowOffset
'
import
{
getWindowOffset
}
from
'
../../helpers
'
const
isClickEvent
=
(
val
:
Event
):
val
is
MouseEvent
=>
val
.
type
===
'
click
'
const
isClickEvent
=
(
val
:
Event
):
val
is
MouseEvent
=>
val
.
type
===
'
click
'
const
isMouseEvent
=
(
val
:
Event
):
val
is
MouseEvent
=>
const
isMouseEvent
=
(
val
:
Event
):
val
is
MouseEvent
=>
val
.
type
.
indexOf
(
'
mouse
'
)
===
0
val
.
type
.
indexOf
(
'
mouse
'
)
===
0
// normalizeNativeEvent
export
function
$normalizeNativeEvent
(
export
function
$nne
(
this
:
ComponentPublicInstance
,
evt
:
Event
)
{
this
:
ComponentPublicInstance
,
evt
:
Event
)
{
// TODO 目前内置组件底层实现,也会进入以下处理逻辑,可能会有影响
// TODO 目前内置组件底层实现,也会进入以下处理逻辑,可能会有影响
const
{
currentTarget
}
=
evt
const
{
currentTarget
}
=
evt
if
(
!
(
evt
instanceof
Event
)
||
!
(
currentTarget
instanceof
HTMLElement
))
{
if
(
!
(
evt
instanceof
Event
)
||
!
(
currentTarget
instanceof
HTMLElement
))
{
...
...
packages/uni-h5-vue/dist/vue.runtime.esm.js
浏览文件 @
516ff43a
...
@@ -8236,6 +8236,10 @@ function autoPrefix(style, rawName) {
...
@@ -8236,6 +8236,10 @@ function autoPrefix(style, rawName) {
// upx,rpx
// upx,rpx
const
rpxRE
=
/
\b([
+-
]?\d
+
(\.\d
+
)?)[
r|u
]
px
\b
/g
;
const
rpxRE
=
/
\b([
+-
]?\d
+
(\.\d
+
)?)[
r|u
]
px
\b
/g
;
const
normalizeRpx
=
(
val
)
=>
{
const
normalizeRpx
=
(
val
)
=>
{
// @ts-ignore
if
(
typeof
rpx2px
!==
'
function
'
)
{
return
val
;
}
if
(
isString
(
val
))
{
if
(
isString
(
val
))
{
return
val
.
replace
(
rpxRE
,
(
a
,
b
)
=>
{
return
val
.
replace
(
rpxRE
,
(
a
,
b
)
=>
{
// @ts-ignore
// @ts-ignore
...
@@ -8398,7 +8402,7 @@ function createInvoker(initialValue, instance) {
...
@@ -8398,7 +8402,7 @@ function createInvoker(initialValue, instance) {
if
(
timeStamp
>=
invoker
.
attached
-
1
)
{
if
(
timeStamp
>=
invoker
.
attached
-
1
)
{
// fixed by xxxxxx
// fixed by xxxxxx
const
proxy
=
instance
&&
instance
.
proxy
;
const
proxy
=
instance
&&
instance
.
proxy
;
const
normalizeNativeEvent
=
proxy
&&
proxy
.
$n
ormalizeNativeEvent
;
const
normalizeNativeEvent
=
proxy
&&
proxy
.
$n
ne
;
callWithAsyncErrorHandling
(
patchStopImmediatePropagation
(
e
,
invoker
.
value
),
instance
,
5
/* NATIVE_EVENT_HANDLER */
,
[
normalizeNativeEvent
?
normalizeNativeEvent
(
e
)
:
e
]);
callWithAsyncErrorHandling
(
patchStopImmediatePropagation
(
e
,
invoker
.
value
),
instance
,
5
/* NATIVE_EVENT_HANDLER */
,
[
normalizeNativeEvent
?
normalizeNativeEvent
(
e
)
:
e
]);
}
}
};
};
...
...
packages/uni-h5-vue/lib/vue.runtime.esm.js
浏览文件 @
516ff43a
...
@@ -8236,6 +8236,10 @@ function autoPrefix(style, rawName) {
...
@@ -8236,6 +8236,10 @@ function autoPrefix(style, rawName) {
// upx,rpx
// upx,rpx
const
rpxRE
=
/
\b([
+-
]?\d
+
(\.\d
+
)?)[
r|u
]
px
\b
/g
;
const
rpxRE
=
/
\b([
+-
]?\d
+
(\.\d
+
)?)[
r|u
]
px
\b
/g
;
const
normalizeRpx
=
(
val
)
=>
{
const
normalizeRpx
=
(
val
)
=>
{
// @ts-ignore
if
(
typeof
rpx2px
!==
'
function
'
)
{
return
val
;
}
if
(
isString
(
val
))
{
if
(
isString
(
val
))
{
return
val
.
replace
(
rpxRE
,
(
a
,
b
)
=>
{
return
val
.
replace
(
rpxRE
,
(
a
,
b
)
=>
{
// @ts-ignore
// @ts-ignore
...
@@ -8398,7 +8402,7 @@ function createInvoker(initialValue, instance) {
...
@@ -8398,7 +8402,7 @@ function createInvoker(initialValue, instance) {
if
(
timeStamp
>=
invoker
.
attached
-
1
)
{
if
(
timeStamp
>=
invoker
.
attached
-
1
)
{
// fixed by xxxxxx
// fixed by xxxxxx
const
proxy
=
instance
&&
instance
.
proxy
;
const
proxy
=
instance
&&
instance
.
proxy
;
const
normalizeNativeEvent
=
proxy
&&
proxy
.
$n
ormalizeNativeEvent
;
const
normalizeNativeEvent
=
proxy
&&
proxy
.
$n
ne
;
callWithAsyncErrorHandling
(
patchStopImmediatePropagation
(
e
,
invoker
.
value
),
instance
,
5
/* NATIVE_EVENT_HANDLER */
,
[
normalizeNativeEvent
?
normalizeNativeEvent
(
e
)
:
e
]);
callWithAsyncErrorHandling
(
patchStopImmediatePropagation
(
e
,
invoker
.
value
),
instance
,
5
/* NATIVE_EVENT_HANDLER */
,
[
normalizeNativeEvent
?
normalizeNativeEvent
(
e
)
:
e
]);
}
}
};
};
...
...
packages/uni-h5/dist/uni-h5.esm.js
浏览文件 @
516ff43a
此差异已折叠。
点击以展开。
packages/uni-h5/src/framework/components/layout/index.tsx
浏览文件 @
516ff43a
...
@@ -2,7 +2,6 @@ import {
...
@@ -2,7 +2,6 @@ import {
ref
,
ref
,
withCtx
,
withCtx
,
computed
,
computed
,
onMounted
,
ComputedRef
,
ComputedRef
,
KeepAlive
,
KeepAlive
,
openBlock
,
openBlock
,
...
@@ -17,6 +16,7 @@ import {
...
@@ -17,6 +16,7 @@ import {
import
{
RouterView
,
useRoute
}
from
'
vue-router
'
import
{
RouterView
,
useRoute
}
from
'
vue-router
'
import
{
updateCssVar
}
from
'
@dcloudio/uni-core
'
import
{
useTabBar
}
from
'
../../setup/state
'
import
{
useTabBar
}
from
'
../../setup/state
'
import
{
useKeepAliveRoute
}
from
'
../../setup/page
'
import
{
useKeepAliveRoute
}
from
'
../../setup/page
'
...
@@ -24,19 +24,18 @@ import TabBar from './tabBar'
...
@@ -24,19 +24,18 @@ import TabBar from './tabBar'
type
KeepAliveRoute
=
ReturnType
<
typeof
useKeepAliveRoute
>
type
KeepAliveRoute
=
ReturnType
<
typeof
useKeepAliveRoute
>
const
CSS_VARS
=
[
const
DEFAULT_CSS_VAR_VALUE
=
'
0px
'
'
--status-bar-height
'
,
updateCssVar
({
'
--
top-window-height
'
,
'
--
status-bar-height
'
:
DEFAULT_CSS_VAR_VALUE
,
'
--
window-left
'
,
'
--
top-window-height
'
:
DEFAULT_CSS_VAR_VALUE
,
'
--window-
right
'
,
'
--window-
left
'
:
DEFAULT_CSS_VAR_VALUE
,
'
--window-
margin
'
,
'
--window-
right
'
:
DEFAULT_CSS_VAR_VALUE
,
'
--
tab-bar-height
'
,
'
--
window-margin
'
:
DEFAULT_CSS_VAR_VALUE
,
]
'
--tab-bar-height
'
:
DEFAULT_CSS_VAR_VALUE
,
})
export
default
defineComponent
({
export
default
defineComponent
({
name
:
'
Layout
'
,
name
:
'
Layout
'
,
setup
(
_props
,
{
emit
})
{
setup
(
_props
,
{
emit
})
{
useCssVar
()
const
keepAliveRoute
=
(
__UNI_FEATURE_PAGES__
&&
const
keepAliveRoute
=
(
__UNI_FEATURE_PAGES__
&&
useKeepAliveRoute
())
as
KeepAliveRoute
useKeepAliveRoute
())
as
KeepAliveRoute
const
topWindow
=
__UNI_FEATURE_TOPWINDOW__
&&
useTopWindow
()
const
topWindow
=
__UNI_FEATURE_TOPWINDOW__
&&
useTopWindow
()
...
@@ -57,11 +56,6 @@ export default defineComponent({
...
@@ -57,11 +56,6 @@ export default defineComponent({
}
}
},
},
})
})
import
{
updateCssVar
}
from
'
../../../helpers/dom
'
function
useCssVar
()
{
CSS_VARS
.
forEach
((
name
)
=>
updateCssVar
(
name
,
'
0px
'
))
}
function
useAppClass
(
showTabBar
?:
ComputedRef
<
boolean
>
)
{
function
useAppClass
(
showTabBar
?:
ComputedRef
<
boolean
>
)
{
const
showMaxWidth
=
ref
(
false
)
const
showMaxWidth
=
ref
(
false
)
...
...
packages/uni-h5/src/framework/components/page/pageHead.tsx
浏览文件 @
516ff43a
...
@@ -3,9 +3,10 @@ import { extend, isArray } from '@vue/shared'
...
@@ -3,9 +3,10 @@ import { extend, isArray } from '@vue/shared'
import
{
Input
}
from
'
@dcloudio/uni-components
'
import
{
Input
}
from
'
@dcloudio/uni-components
'
import
{
getRealPath
}
from
'
@dcloudio/uni-platform
'
import
{
getRealPath
}
from
'
@dcloudio/uni-platform
'
import
{
import
{
ICON_PATH_SEARCH
,
createSvgIconVNode
,
invokeHook
,
invokeHook
,
updateStyle
,
createSvgIconVNode
,
ICON_PATH_SEARCH
,
}
from
'
@dcloudio/uni-core
'
}
from
'
@dcloudio/uni-core
'
import
{
usePageMeta
}
from
'
../../setup/provide
'
import
{
usePageMeta
}
from
'
../../setup/provide
'
import
{
import
{
...
@@ -13,8 +14,6 @@ import {
...
@@ -13,8 +14,6 @@ import {
usePageHeadTransparentBackgroundColor
,
usePageHeadTransparentBackgroundColor
,
}
from
'
./transparent
'
}
from
'
./transparent
'
import
{
updateStyle
}
from
'
../../../helpers/dom
'
const
ICON_PATH_BACK
=
const
ICON_PATH_BACK
=
'
M21.781 7.844l-9.063 8.594 9.063 8.594q0.25 0.25 0.25 0.609t-0.25 0.578q-0.25 0.25-0.578 0.25t-0.578-0.25l-9.625-9.125q-0.156-0.125-0.203-0.297t-0.047-0.359q0-0.156 0.047-0.328t0.203-0.297l9.625-9.125q0.25-0.25 0.578-0.25t0.578 0.25q0.25 0.219 0.25 0.578t-0.25 0.578z
'
'
M21.781 7.844l-9.063 8.594 9.063 8.594q0.25 0.25 0.25 0.609t-0.25 0.578q-0.25 0.25-0.578 0.25t-0.578-0.25l-9.625-9.125q-0.156-0.125-0.203-0.297t-0.047-0.359q0-0.156 0.047-0.328t0.203-0.297l9.625-9.125q0.25-0.25 0.578-0.25t0.578 0.25q0.25 0.219 0.25 0.578t-0.25 0.578z
'
...
...
packages/uni-h5/src/helpers/dom.ts
浏览文件 @
516ff43a
const
sheetsMap
=
new
Map
()
export
function
updateStyle
(
id
:
string
,
content
:
string
)
{
let
style
=
sheetsMap
.
get
(
id
)
if
(
style
&&
!
(
style
instanceof
HTMLStyleElement
))
{
removeStyle
(
id
)
style
=
undefined
}
if
(
!
style
)
{
style
=
document
.
createElement
(
'
style
'
)
style
.
setAttribute
(
'
type
'
,
'
text/css
'
)
style
.
innerHTML
=
content
document
.
head
.
appendChild
(
style
)
}
else
{
style
.
innerHTML
=
content
}
sheetsMap
.
set
(
id
,
style
)
}
export
function
removeStyle
(
id
:
string
)
{
let
style
=
sheetsMap
.
get
(
id
)
if
(
style
)
{
if
(
style
instanceof
CSSStyleSheet
)
{
// @ts-ignore
const
index
=
document
.
adoptedStyleSheets
.
indexOf
(
style
)
// @ts-ignore
document
.
adoptedStyleSheets
=
document
.
adoptedStyleSheets
.
filter
(
(
s
:
CSSStyleSheet
)
=>
s
!==
style
)
}
else
{
document
.
head
.
removeChild
(
style
)
}
sheetsMap
.
delete
(
id
)
}
}
const
screen
=
window
.
screen
const
screen
=
window
.
screen
const
documentElement
=
document
.
documentElement
const
documentElement
=
document
.
documentElement
let
styleObj
:
CSSStyleDeclaration
export
function
updateCssVar
(
name
:
string
,
value
:
string
)
{
if
(
!
styleObj
)
{
styleObj
=
documentElement
.
style
}
styleObj
.
setProperty
(
name
,
value
)
}
export
function
checkMinWidth
(
minWidth
:
number
)
{
export
function
checkMinWidth
(
minWidth
:
number
)
{
const
sizes
=
[
const
sizes
=
[
window
.
outerWidth
,
window
.
outerWidth
,
...
...
packages/vite-plugin-uni/src/configResolved/plugins/pagesJson.ts
浏览文件 @
516ff43a
...
@@ -33,7 +33,7 @@ export function uniPagesJsonPlugin(
...
@@ -33,7 +33,7 @@ export function uniPagesJsonPlugin(
if
(
id
.
endsWith
(
PAGES_JSON_JS
))
{
if
(
id
.
endsWith
(
PAGES_JSON_JS
))
{
return
{
return
{
code
:
code
:
registerGlobalCode
+
(
config
.
define
!
.
__UNI_FEATURE_RPX__
?
registerGlobalCode
:
''
)
+
(
options
.
command
===
'
serve
'
?
registerDevServerGlobalCode
:
''
)
+
(
options
.
command
===
'
serve
'
?
registerDevServerGlobalCode
:
''
)
+
parsePagesJson
(
code
,
config
,
options
),
parsePagesJson
(
code
,
config
,
options
),
map
:
{
mappings
:
''
},
map
:
{
mappings
:
''
},
...
...
packages/vite-plugin-uni/src/utils/define.ts
浏览文件 @
516ff43a
...
@@ -24,6 +24,7 @@ interface PagesFeatures {
...
@@ -24,6 +24,7 @@ interface PagesFeatures {
interface
ManifestFeatures
{
interface
ManifestFeatures
{
wx
:
boolean
wx
:
boolean
wxs
:
boolean
wxs
:
boolean
rpx
:
boolean
promise
:
boolean
promise
:
boolean
longpress
:
boolean
longpress
:
boolean
routerMode
:
'
"hash"
'
|
'
"history"
'
routerMode
:
'
"hash"
'
|
'
"history"
'
...
@@ -158,6 +159,7 @@ function resolveManifestFeature(
...
@@ -158,6 +159,7 @@ function resolveManifestFeature(
const
features
:
ManifestFeatures
=
{
const
features
:
ManifestFeatures
=
{
wx
:
false
,
wx
:
false
,
wxs
:
true
,
wxs
:
true
,
rpx
:
true
,
promise
:
false
,
promise
:
false
,
longpress
:
true
,
longpress
:
true
,
routerMode
:
'
"hash"
'
,
routerMode
:
'
"hash"
'
,
...
@@ -217,6 +219,7 @@ export function getFeatures(
...
@@ -217,6 +219,7 @@ export function getFeatures(
const
{
const
{
wx
,
wx
,
wxs
,
wxs
,
rpx
,
nvue
,
nvue
,
i18nEn
,
i18nEn
,
i18nEs
,
i18nEs
,
...
@@ -245,6 +248,7 @@ export function getFeatures(
...
@@ -245,6 +248,7 @@ export function getFeatures(
return
{
return
{
__UNI_FEATURE_WX__
:
wx
,
// 是否启用小程序的组件实例 API,如:selectComponent 等(uni-core/src/service/plugin/appConfig)
__UNI_FEATURE_WX__
:
wx
,
// 是否启用小程序的组件实例 API,如:selectComponent 等(uni-core/src/service/plugin/appConfig)
__UNI_FEATURE_WXS__
:
wxs
,
// 是否启用 wxs 支持,如:getComponentDescriptor 等(uni-core/src/view/plugin/appConfig)
__UNI_FEATURE_WXS__
:
wxs
,
// 是否启用 wxs 支持,如:getComponentDescriptor 等(uni-core/src/view/plugin/appConfig)
__UNI_FEATURE_RPX__
:
rpx
,
// 是否启用运行时 rpx 支持
__UNI_FEATURE_PROMISE__
:
promise
,
// 是否启用旧版本的 promise 支持(即返回[err,res]的格式),默认返回标准
__UNI_FEATURE_PROMISE__
:
promise
,
// 是否启用旧版本的 promise 支持(即返回[err,res]的格式),默认返回标准
__UNI_FEATURE_LONGPRESS__
:
longpress
,
// 是否启用longpress
__UNI_FEATURE_LONGPRESS__
:
longpress
,
// 是否启用longpress
__UNI_FEATURE_I18N_EN__
:
i18nEn
,
// 是否启用en
__UNI_FEATURE_I18N_EN__
:
i18nEn
,
// 是否启用en
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录