Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
29ea5065
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看板
提交
29ea5065
编写于
9月 22, 2022
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: picker mode="date" 初始化时范围包含用户传入的 start.year、end.year question/131332
上级
75dc84da
变更
4
展开全部
隐藏空白更改
内联
并排
Showing
4 changed file
with
49 addition
and
27 deletion
+49
-27
packages/uni-app-vite/lib/template/__uniapppicker.js
packages/uni-app-vite/lib/template/__uniapppicker.js
+2
-2
packages/uni-components/src/nvue/picker-view-column/index.tsx
...ages/uni-components/src/nvue/picker-view-column/index.tsx
+12
-17
packages/uni-components/src/nvue/picker-view/index.tsx
packages/uni-components/src/nvue/picker-view/index.tsx
+8
-4
packages/uni-h5/src/view/components/picker/index.tsx
packages/uni-h5/src/view/components/picker/index.tsx
+27
-4
未找到文件。
packages/uni-app-vite/lib/template/__uniapppicker.js
浏览文件 @
29ea5065
此差异已折叠。
点击以展开。
packages/uni-components/src/nvue/picker-view-column/index.tsx
浏览文件 @
29ea5065
...
...
@@ -259,6 +259,16 @@ function usePickerColumnScroll(
)
{
let
scrollToElementTime
:
number
function
setDomScrollToElement
(
_current
:
number
,
animated
:
boolean
=
true
)
{
dom
.
scrollToElement
(
contentRef
.
value
,
{
offset
:
_current
*
indicatorHeight
.
value
,
animated
,
})
if
(
animated
)
{
scrollToElementTime
=
Date
.
now
()
}
}
watch
(
()
=>
props
.
length
,
()
=>
{
...
...
@@ -267,29 +277,14 @@ function usePickerColumnScroll(
},
150
)
}
)
watch
(
()
=>
current
.
value
,
(
_current
)
=>
{
dom
.
scrollToElement
(
contentRef
.
value
,
{
offset
:
_current
*
indicatorHeight
.
value
,
animated
:
true
,
})
scrollToElementTime
=
Date
.
now
()
}
)
watch
(
current
,
(
val
)
=>
setDomScrollToElement
(
val
))
const
setCurrent
=
(
_current
:
number
,
animated
=
true
,
force
:
Boolean
)
=>
{
if
(
current
.
value
===
_current
&&
!
force
)
{
return
}
dom
.
scrollToElement
(
contentRef
.
value
,
{
offset
:
_current
*
indicatorHeight
.
value
,
animated
,
})
current
.
value
=
_current
if
(
animated
)
{
scrollToElementTime
=
Date
.
now
()
}
if
(
isAndroid
)
setDomScrollToElement
(
_current
,
animated
)
}
const
onScrollend
=
(
event
:
{
detail
:
{
...
...
packages/uni-components/src/nvue/picker-view/index.tsx
浏览文件 @
29ea5065
...
...
@@ -9,6 +9,7 @@ import {
provide
,
ExtractPropTypes
,
Comment
,
nextTick
,
}
from
'
vue
'
import
{
extend
}
from
'
@vue/shared
'
import
{
...
...
@@ -130,10 +131,13 @@ function useState(props: Props) {
()
=>
props
.
value
,
(
val
)
=>
{
state
.
value
.
length
=
val
.
length
val
.
forEach
((
val
,
index
)
=>
{
if
(
val
!==
state
.
value
[
index
])
{
state
.
value
.
splice
(
index
,
1
,
val
)
}
// fixed by lxh 解决 picker 组件滑动出范围不重定向回 end
nextTick
(()
=>
{
val
.
forEach
((
val
,
index
)
=>
{
if
(
val
!==
state
.
value
[
index
])
{
state
.
value
.
splice
(
index
,
1
,
val
)
}
})
})
}
)
...
...
packages/uni-h5/src/view/components/picker/index.tsx
浏览文件 @
29ea5065
...
...
@@ -42,7 +42,7 @@ function getDefaultStartValue(props: Props) {
return
'
00:00
'
}
if
(
props
.
mode
===
mode
.
DATE
)
{
const
year
=
new
Date
().
getFullYear
()
-
1
0
0
const
year
=
new
Date
().
getFullYear
()
-
1
5
0
switch
(
props
.
fields
)
{
case
fields
.
YEAR
:
return
year
.
toString
()
...
...
@@ -59,7 +59,7 @@ function getDefaultEndValue(props: Props) {
return
'
23:59
'
}
if
(
props
.
mode
===
mode
.
DATE
)
{
const
year
=
new
Date
().
getFullYear
()
+
1
0
0
const
year
=
new
Date
().
getFullYear
()
+
1
5
0
switch
(
props
.
fields
)
{
case
fields
.
YEAR
:
return
year
.
toString
()
...
...
@@ -584,10 +584,33 @@ function usePickerMethods(
}
;(
state
.
timeArray
as
TwoDimensionArray
).
push
(
hours
,
minutes
)
}
function
getYearStartEnd
()
{
let
year
=
new
Date
().
getFullYear
()
let
start
=
year
-
150
let
end
=
year
+
150
if
(
props
.
start
)
{
const
_year
=
new
Date
(
props
.
start
).
getFullYear
()
if
(
!
isNaN
(
_year
)
&&
_year
<
start
)
{
start
=
_year
}
}
if
(
props
.
end
)
{
const
_year
=
new
Date
(
props
.
start
).
getFullYear
()
if
(
!
isNaN
(
_year
)
&&
_year
>
end
)
{
end
=
_year
}
}
return
{
start
,
end
,
}
}
function
_createDate
()
{
let
years
:
string
[]
=
[]
let
year
=
new
Date
().
getFullYear
()
for
(
let
i
=
year
-
150
,
end
=
year
+
150
;
i
<=
end
;
i
++
)
{
const
year
=
getYearStartEnd
()
for
(
let
i
=
year
.
start
,
end
=
year
.
end
;
i
<=
end
;
i
++
)
{
years
.
push
(
String
(
i
))
}
let
months
:
string
[]
=
[]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录