Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
8ec58060
U
uni-app
项目概览
DCloud
/
uni-app
14 天 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8ec58060
编写于
1月 03, 2024
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: update uvue
上级
b9fdc3d7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
11 addition
and
17 deletion
+11
-17
packages/uni-app-vue/lib/uvue.runtime.esm.js
packages/uni-app-vue/lib/uvue.runtime.esm.js
+11
-17
未找到文件。
packages/uni-app-vue/lib/uvue.runtime.esm.js
浏览文件 @
8ec58060
...
...
@@ -8023,6 +8023,9 @@ function setExtraClassStyle(el, classStyle) {
function
getExtraStyle
(
el
)
{
return
getNodeExtraData
(
el
,
NODE_EXT_STYLE
);
}
function
setExtraStyle
(
el
,
style
)
{
setNodeExtraData
(
el
,
NODE_EXT_STYLE
,
style
);
}
function
isCommentNode
(
node
)
{
return
node
.
nodeName
==
'
#comment
'
;
}
...
...
@@ -8184,7 +8187,7 @@ function toStyle(el, classStyle, classStyleWeights) {
style
.
forEach
((
value
,
key
)
=>
{
const
weight
=
classStyleWeights
[
key
];
// TODO: 目前只计算了 class 中 important 的权重,会存在 style class 同时设置 important 时,class 优先级更高的问题
if
(
weight
==
null
||
weight
<
1000
)
{
if
(
weight
==
null
||
weight
<
WEIGHT_IMPORTANT
)
{
res
.
set
(
key
,
value
);
}
});
...
...
@@ -8297,17 +8300,6 @@ function updateChildrenClassStyle(el) {
}
}
function
toMap
(
value
)
{
if
(
value
instanceof
Map
)
{
return
value
;
}
const
map
=
new
Map
();
for
(
const
key
in
value
)
{
map
.
set
(
key
,
value
[
key
]);
}
return
map
;
}
function
patchAttr
(
el
,
key
,
value
,
instance
=
null
)
{
if
(
instance
)
{
[
key
,
value
]
=
transformAttr
(
el
,
key
,
value
,
instance
);
...
...
@@ -8451,27 +8443,29 @@ function patchStyle(el, prev, next) {
if
(
isString
(
next
))
{
next
=
parseStringStyle
(
next
);
}
const
batchedStyles
=
{}
;
const
batchedStyles
=
new
Map
()
;
const
isPrevObj
=
prev
&&
!
isString
(
prev
);
if
(
isPrevObj
)
{
for
(
const
key
in
prev
)
{
if
(
next
[
key
]
==
null
)
{
batchedStyles
[
camelize
(
key
)]
=
''
;
batchedStyles
.
set
(
camelize
(
key
),
''
)
;
}
}
for
(
const
key
in
next
)
{
const
value
=
next
[
key
];
if
(
value
!==
prev
[
key
])
{
batchedStyles
[
camelize
(
key
)]
=
value
;
batchedStyles
.
set
(
camelize
(
key
),
value
)
;
}
}
}
else
{
for
(
const
key
in
next
)
{
batchedStyles
[
camelize
(
key
)]
=
next
[
key
]
;
batchedStyles
.
set
(
camelize
(
key
),
next
[
key
])
;
}
setExtraStyle
(
el
,
batchedStyles
);
}
el
.
updateStyle
(
toMap
(
batchedStyles
));
// TODO validateStyles(el, batchedStyles)
el
.
updateStyle
(
batchedStyles
);
}
const
vModelTags
=
[
'
u-input
'
,
'
u-textarea
'
];
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录