Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
fashion-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tangfh
fashion-ui
Commits
4112ad25
Commit
4112ad25
authored
Oct 29, 2024
by
tangfh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+
parent
e76ac753
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
7 deletions
+21
-7
changelog.md
uni_modules/f-date-time-picker/changelog.md
+6
-0
f-date-time-picker.vue
...cker/components/f-date-time-picker/f-date-time-picker.vue
+5
-3
package.json
uni_modules/f-date-time-picker/package.json
+1
-1
changelog.md
uni_modules/f-pop/changelog.md
+2
-0
f-pop.vue
uni_modules/f-pop/components/f-pop/f-pop.vue
+6
-2
package.json
uni_modules/f-pop/package.json
+1
-1
No files found.
uni_modules/f-date-time-picker/changelog.md
View file @
4112ad25
## 1.0.3(2024-10-29)
1.
0.3
## 1.0.2(2024-10-29)
1.
0.2
## 1.0.1(2024-10-29)
1.
0.1
## 1.0.0(2024-07-22)
1.
0.0
uni_modules/f-date-time-picker/components/f-date-time-picker/f-date-time-picker.vue
View file @
4112ad25
...
...
@@ -251,9 +251,9 @@
const
val
=
e
.
detail
.
value
const
y
=
this
.
years
[
val
[
0
]]
?
this
.
years
[
val
[
0
]]
:
this
.
years
[
this
.
years
.
length
-
1
]
const
m
=
this
.
months
[
val
[
1
]]
?
this
.
months
[
val
[
1
]]
:
this
.
months
[
this
.
months
.
length
-
1
]
const
d
=
this
.
days
[
val
[
2
]]
?
this
.
days
[
val
[
2
]]
:
this
.
days
[
this
.
days
.
length
-
1
]
const
h
=
this
.
hours
[
val
[
3
]]
>=
0
?
this
.
hours
[
val
[
3
]]
:
this
.
hours
[
this
.
hours
.
length
-
1
]
const
minu
=
this
.
minutes
[
val
[
4
]]
>=
0
?
this
.
minutes
[
val
[
4
]]
:
this
.
minutes
[
this
.
minutes
.
length
-
1
]
const
d
=
this
.
days
[
val
[
2
]]
?
this
.
days
[
val
[
2
]]
:
1
const
h
=
this
.
hours
[
val
[
3
]]
>=
0
?
this
.
hours
[
val
[
3
]]
:
0
const
minu
=
this
.
minutes
[
val
[
4
]]
>=
0
?
this
.
minutes
[
val
[
4
]]
:
0
const
date
=
`
${
y
}
/
${
m
}
/
${
d
}
${
h
}
:
${
minu
}
`
if
(
prev
[
1
]
!=
val
[
1
])
{
...
...
@@ -262,6 +262,8 @@
this
.
initCurr
(
date
)
}
this
.
pickerVal
=
val
console
.
log
(
'in date: '
,
date
);
this
.
$emit
(
"change"
,
date
)
},
// 点击确定
confirm
()
{
...
...
uni_modules/f-date-time-picker/package.json
View file @
4112ad25
{
"id"
:
"f-date-time-picker"
,
"displayName"
:
"f-date-time-picker"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
3
"
,
"description"
:
"年月日时分选择组件"
,
"keywords"
:
[
"f-date-time-picker"
...
...
uni_modules/f-pop/changelog.md
View file @
4112ad25
## 1.0.4(2024-10-29)
1.
0.4
## 1.0.3(2024-06-07)
1.
0.3
## 1.0.2(2024-06-07)
...
...
uni_modules/f-pop/components/f-pop/f-pop.vue
View file @
4112ad25
...
...
@@ -18,7 +18,7 @@
@click.stop="noHandle()" :animation="centerAnimationData" :style="{marginTop: '-44px'}">
<view
class=
"pop-view-top-title"
v-if=
"isNeedDefaultTitleBar"
>
<text
class=
"pop-text-top-title"
>
{{
title
}}
</text>
<image
class=
"pop-close-btn"
:src=
"closeIcon"
mode=
"aspectFill"
@
click=
"
dismiss
()"
>
<image
class=
"pop-close-btn"
:src=
"closeIcon"
mode=
"aspectFill"
@
click=
"
onCloseBtnClick
()"
>
</image>
</view>
<slot
name=
"center"
></slot>
...
...
@@ -30,7 +30,7 @@
@touchmove.stop.prevent="noHandle">
<view
class=
"pop-view-top-title"
v-if=
"isNeedDefaultTitleBar"
>
<text
class=
"pop-text-top-title"
>
{{
title
}}
</text>
<image
class=
"pop-close-btn"
:src=
"closeIcon"
mode=
"aspectFill"
@
click=
"
dismiss
()"
>
<image
class=
"pop-close-btn"
:src=
"closeIcon"
mode=
"aspectFill"
@
click=
"
onCloseBtnClick
()"
>
</image>
</view>
<slot
name=
"bottom"
></slot>
...
...
@@ -175,6 +175,10 @@
this
.
maskAnimationData
=
this
.
animationMask
.
opacity
(
1
).
step
().
export
();
}.
bind
(
this
),
this
.
showDelay
);
},
onCloseBtnClick
()
{
this
.
$emit
(
'close'
,
{})
this
.
dismiss
()
},
dismiss
()
{
if
(
this
.
isListentDismiss
)
{
this
.
$emit
(
'dismiss'
,
{})
...
...
uni_modules/f-pop/package.json
View file @
4112ad25
{
"id"
:
"f-pop"
,
"displayName"
:
"f-pop"
,
"version"
:
"1.0.
3
"
,
"version"
:
"1.0.
4
"
,
"description"
:
"f-pop 插件(底部弹出,中间弹出,顶部弹出)"
,
"keywords"
:
[
"f-pop"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment