Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
6eb1346a
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,发现更多精彩内容 >>
提交
6eb1346a
编写于
3月 04, 2020
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 优化 app-v3 cover-view 文字排版
上级
31056103
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
35 addition
and
21 deletion
+35
-21
src/platforms/app-plus/view/components/cover-view/index.vue
src/platforms/app-plus/view/components/cover-view/index.vue
+2
-1
src/platforms/app-plus/view/mixins/cover.js
src/platforms/app-plus/view/mixins/cover.js
+33
-20
未找到文件。
src/platforms/app-plus/view/components/cover-view/index.vue
浏览文件 @
6eb1346a
...
@@ -3,7 +3,8 @@
...
@@ -3,7 +3,8 @@
v-on=
"$listeners"
>
v-on=
"$listeners"
>
<div
<div
ref=
"container"
ref=
"container"
class=
"uni-cover-view"
/>
class=
"uni-cover-view"
v-text=
"coverContent"
/>
</uni-cover-view>
</uni-cover-view>
</
template
>
</
template
>
<
script
>
<
script
>
...
...
src/platforms/app-plus/view/mixins/cover.js
浏览文件 @
6eb1346a
const
base
=
[
'
padding
'
,
'
borderRadius
'
,
'
borderColor
'
,
'
borderWidth
'
,
'
backgroundColor
'
]
const
base
=
[
'
borderRadius
'
,
'
borderColor
'
,
'
borderWidth
'
,
'
backgroundColor
'
]
const
text
=
[
'
color
'
,
'
textAlign
'
,
'
lineHeight
'
,
'
fontSize
'
,
'
fontWeight
'
,
'
textOverflow
'
,
'
whiteSpace
'
]
const
text
=
[
'
paddingTop
'
,
'
paddingRight
'
,
'
paddingBottom
'
,
'
paddingLeft
'
,
'
color
'
,
'
textAlign
'
,
'
lineHeight
'
,
'
fontSize
'
,
'
fontWeight
'
,
'
textOverflow
'
,
'
whiteSpace
'
]
const
image
=
[]
const
image
=
[]
const
textAlign
=
{
start
:
'
left
'
,
end
:
'
right
'
}
const
textAlign
=
{
start
:
'
left
'
,
end
:
'
right
'
}
let
index
=
0
let
index
=
0
...
@@ -35,30 +35,42 @@ export default {
...
@@ -35,30 +35,42 @@ export default {
tags
()
{
tags
()
{
const
position
=
this
.
_getTagPosition
()
const
position
=
this
.
_getTagPosition
()
const
style
=
this
.
style
const
style
=
this
.
style
return
[
const
tags
=
[{
{
tag
:
'
rect
'
,
tag
:
'
rect
'
,
position
,
position
,
rectStyles
:
{
rectStyles
:
{
color
:
style
.
backgroundColor
,
color
:
style
.
backgroundColor
,
radius
:
style
.
borderRadius
,
radius
:
style
.
borderRadius
,
borderColor
:
style
.
borderColor
,
borderColor
:
style
.
borderColor
,
borderWidth
:
style
.
borderWidth
borderWidth
:
style
.
borderWidth
}
}
}]
},
if
(
this
.
coverType
===
'
image
'
)
{
t
his
.
coverType
===
'
image
'
?
{
t
ags
.
push
(
{
tag
:
'
img
'
,
tag
:
'
img
'
,
position
,
position
,
src
:
this
.
coverContent
src
:
this
.
coverContent
}
:
{
})
}
else
{
const
lineSpacing
=
parseFloat
(
style
.
lineHeight
)
-
parseFloat
(
style
.
fontSize
)
let
width
=
parseFloat
(
position
.
width
)
-
parseFloat
(
style
.
paddingLeft
)
-
parseFloat
(
style
.
paddingRight
)
width
=
width
<
0
?
0
:
width
let
height
=
parseFloat
(
position
.
height
)
-
parseFloat
(
style
.
paddingTop
)
-
lineSpacing
/
2
-
parseFloat
(
style
.
paddingBottom
)
height
=
height
<
0
?
0
:
height
tags
.
push
({
tag
:
'
font
'
,
tag
:
'
font
'
,
position
,
position
:
{
top
:
`
${
parseFloat
(
position
.
top
)
+
parseFloat
(
style
.
paddingTop
)
+
lineSpacing
/
2
}
px`
,
left
:
`
${
parseFloat
(
position
.
left
)
+
parseFloat
(
style
.
paddingLeft
)}
px`
,
width
:
`
${
width
}
px`
,
height
:
`
${
height
}
px`
},
textStyles
:
{
textStyles
:
{
align
:
textAlign
[
style
.
textAlign
]
||
style
.
textAlign
,
align
:
textAlign
[
style
.
textAlign
]
||
style
.
textAlign
,
color
:
style
.
color
,
color
:
style
.
color
,
decoration
:
'
none
'
,
decoration
:
'
none
'
,
lineSpacing
:
(
parseFloat
(
style
.
lineHeight
)
-
parseFloat
(
style
.
fontSize
))
+
'
px
'
,
lineSpacing
:
`
${
lineSpacing
}
px`
,
margin
:
style
.
padding
,
margin
:
'
0px
'
,
overflow
:
style
.
textOverflow
,
overflow
:
style
.
textOverflow
,
size
:
style
.
fontSize
,
size
:
style
.
fontSize
,
verticalAlign
:
'
top
'
,
verticalAlign
:
'
top
'
,
...
@@ -66,8 +78,9 @@ export default {
...
@@ -66,8 +78,9 @@ export default {
whiteSpace
:
style
.
whiteSpace
whiteSpace
:
style
.
whiteSpace
},
},
text
:
this
.
coverContent
text
:
this
.
coverContent
}
})
]
}
return
tags
}
}
},
},
mounted
()
{
mounted
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录