Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
05167597
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,发现更多精彩内容 >>
提交
05167597
编写于
12月 21, 2018
作者:
郭
郭胜强
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 解决picker-view组件和picker组件内部class名称冲突的问题
上级
753f47b8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
21 deletion
+21
-21
src/core/view/components/picker-view-column/index.vue
src/core/view/components/picker-view-column/index.vue
+21
-21
未找到文件。
src/core/view/components/picker-view-column/index.vue
浏览文件 @
05167597
...
...
@@ -61,7 +61,7 @@ export default {
methods
:
{
_setItemHeight
(
height
)
{
var
style
=
document
.
createElement
(
'
style
'
)
style
.
innerText
=
`.uni-picker-content.
${
this
.
scope
}
>*{height:
${
height
}
px;overflow: hidden;}`
style
.
innerText
=
`.uni-picker-
view-
content.
${
this
.
scope
}
>*{height:
${
height
}
px;overflow: hidden;}`
document
.
head
.
appendChild
(
style
)
},
_handleTrack
:
function
(
e
)
{
...
...
@@ -140,18 +140,18 @@ export default {
[
createElement
(
'
div
'
,
{
ref
:
'
main
'
,
staticClass
:
'
uni-picker-group
'
staticClass
:
'
uni-picker-
view-
group
'
},
[
createElement
(
'
div
'
,
{
ref
:
'
mask
'
,
staticClass
:
'
uni-picker-mask
'
,
staticClass
:
'
uni-picker-
view-
mask
'
,
class
:
this
.
maskClass
,
style
:
`background-size: 100%
${
this
.
maskSize
}
px;
${
this
.
maskStyle
}
`
}),
createElement
(
'
div
'
,
{
ref
:
'
indicator
'
,
staticClass
:
'
uni-picker-indicator
'
,
staticClass
:
'
uni-picker-
view-
indicator
'
,
class
:
this
.
indicatorClass
,
style
:
this
.
indicatorStyle
},
[
createElement
(
'
v-uni-resize-sensor
'
,
{
...
...
@@ -164,7 +164,7 @@ export default {
})]),
createElement
(
'
div
'
,
{
ref
:
'
content
'
,
staticClass
:
'
uni-picker-content
'
,
staticClass
:
'
uni-picker-
view-
content
'
,
class
:
this
.
scope
,
style
:
`padding:
${
this
.
maskSize
}
px 0;`
},
...
...
@@ -189,24 +189,24 @@ uni-picker-view-column[hidden] {
display
:
none
;
}
.uni-picker-group
{
.uni-picker-
view-
group
{
height
:
100%
;
}
.uni-picker-mask
{
.uni-picker-
view-
mask
{
transform
:
translateZ
(
0
);
-webkit-transform
:
translateZ
(
0
);
}
.uni-picker-indicator
,
.uni-picker-mask
{
.uni-picker-
view-
indicator
,
.uni-picker-
view-
mask
{
position
:
absolute
;
left
:
0
;
width
:
100%
;
z-index
:
3
;
}
.uni-picker-mask
{
.uni-picker-
view-
mask
{
top
:
0
;
height
:
100%
;
margin
:
0
auto
;
...
...
@@ -221,15 +221,15 @@ uni-picker-view-column[hidden] {
background-repeat
:
no-repeat
;
}
.uni-picker-indicator
{
.uni-picker-
view-
indicator
{
height
:
34px
;
/* top: 102px; */
top
:
50%
;
transform
:
translateY
(
-50%
);
}
.uni-picker-indicator
,
.uni-picker-mask
{
.uni-picker-
view-
indicator
,
.uni-picker-
view-
mask
{
position
:
absolute
;
left
:
0
;
width
:
100%
;
...
...
@@ -237,7 +237,7 @@ uni-picker-view-column[hidden] {
pointer-events
:
none
;
}
.uni-picker-content
{
.uni-picker-
view-
content
{
position
:
absolute
;
top
:
0
;
left
:
0
;
...
...
@@ -246,13 +246,13 @@ uni-picker-view-column[hidden] {
padding
:
102px
0
;
}
.uni-picker-content
>
*
{
.uni-picker-
view-
content
>
*
{
height
:
34px
;
overflow
:
hidden
;
}
.uni-picker-indicator
:after
,
.uni-picker-indicator
:before
{
.uni-picker-
view-
indicator
:after
,
.uni-picker-
view-
indicator
:before
{
content
:
" "
;
position
:
absolute
;
left
:
0
;
...
...
@@ -261,7 +261,7 @@ uni-picker-view-column[hidden] {
color
:
#e5e5e5
;
}
.uni-picker-indicator
:before
{
.uni-picker-
view-
indicator
:before
{
top
:
0
;
border-top
:
1px
solid
#e5e5e5
;
-webkit-transform-origin
:
0
0
;
...
...
@@ -270,7 +270,7 @@ uni-picker-view-column[hidden] {
transform
:
scaleY
(
0.5
);
}
.uni-picker-indicator
:after
{
.uni-picker-
view-
indicator
:after
{
bottom
:
0
;
border-bottom
:
1px
solid
#e5e5e5
;
-webkit-transform-origin
:
0
100%
;
...
...
@@ -279,8 +279,8 @@ uni-picker-view-column[hidden] {
transform
:
scaleY
(
0.5
);
}
.uni-picker-indicator
:after
,
.uni-picker-indicator
:before
{
.uni-picker-
view-
indicator
:after
,
.uni-picker-
view-
indicator
:before
{
content
:
" "
;
position
:
absolute
;
left
:
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录