Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
19f64bbe
提交
19f64bbe
编写于
10月 29, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
日历动画样式
上级
555c30b4
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
62 行增加
和
5 行删除
+62
-5
app-calendar.vue
src/components/app-calendar/app-calendar.vue
+58
-4
icon.css
src/components/app-calendar/icon.css
+4
-1
未找到文件。
src/components/app-calendar/app-calendar.vue
浏览文件 @
19f64bbe
...
...
@@ -33,9 +33,13 @@
:class=
"['mc-body',
{'mc-range-mode': range, 'week-switch': weekSwitch
&&
!isMonthRange, 'month-range-mode': isMonthRange}]"
v-for="(days, index) in monthRangeDays"
:key='index'
:style="mcbodyStyle()"
style="
transition: all 0.5s ease-in-out 0s;
overflow: hidden;"
>
<div
class=
"month-rang-head"
v-if=
"isMonthRange"
>
{{
rangeOfMonths
[
index
][
2
]
}}
</div>
<tr
v-for=
"(day,k1) in days"
:key=
"k1"
:class=
"
{'gregorianStyle': !lunar}">
<tr
v-for=
"(day,k1) in days"
:key=
"k1"
:class=
"
{'gregorianStyle': !lunar}"
:style="itemtrStyle(day,days)" style="transition: all .5s; overflow: hidden;"
>
<td
v-for=
"(child,k2) in day"
:key=
"k2"
...
...
@@ -104,6 +108,10 @@
type
:
Array
,
default
:
null
},
touchLength
:{
type
:
Number
,
default
:
0
},
arrowLeft
:
{
type
:
String
,
default
:
''
...
...
@@ -257,6 +265,15 @@
startWeekIndex
:
0
,
positionWeek
:
true
,
isMonthRange
:
false
,
isseletd
:
false
,
changeStyle2
(
item
){
this
.
changebtntop
=
item
;
this
.
render
(
this
.
year
,
this
.
month
);
},
createdinit
(){
this
.
changebtntop
=
false
;
this
.
render
(
this
.
year
,
this
.
month
);
},
};
},
computed
:
{
...
...
@@ -267,6 +284,9 @@
if
(
this
.
isRendeRangeMode
())
return
;
this
.
render
(
this
.
year
,
this
.
month
,
'_WATCHRENDER_'
,
'events'
);
},
touchLength
(){
// console.log(this.touchLength);
},
disabled
()
{
if
(
this
.
isRendeRangeMode
())
return
;
this
.
render
(
this
.
year
,
this
.
month
,
'_WATCHRENDER_'
,
'disabled'
);
...
...
@@ -329,7 +349,6 @@
loopArray
.
push
(
this
.
months
[
0
]);
this
.
monthsLoop
=
loopArray
;
this
.
monthsLoopCopy
=
this
.
monthsLoop
.
concat
();
console
.
log
(
"sign"
,
this
.
sign
);
},
mounted
()
{
const
self
=
this
;
...
...
@@ -361,10 +380,45 @@
lineHeight
:
this
.
lunar
?
`
${
this
.
itemWidth
/
1.5
}
px`
:
`
${
this
.
itemWidth
}
px`
};
},
// user
itemtrStyle
(
day
,
days
){
let
tempH
=
parseFloat
(
this
.
itemWidth
)
+
8
;
let
tmpSelect
=
false
;
days
.
forEach
((
item
)
=>
{
if
(
item
.
some
((
i
)
=>
{
return
i
.
selected
})){
tmpSelect
=
true
;
};
});
let
falg
=
day
.
some
((
item
)
=>
{
return
tmpSelect
?
item
.
selected
:
item
.
isToday
;
});
if
(
falg
){
return
{
height
:
`
${
tempH
}
px`
,}
}
return
this
.
changebtntop
?{
height
:
`
${
tempH
}
px`
,
}:{
height
:
0
,}
},
mcbodyStyle
(){
let
count
=
0
;
this
.
monthRangeDays
.
forEach
((
item
)
=>
{
item
.
forEach
((
i
)
=>
{
count
++
;
});
});
if
(
!
this
.
changebtntop
){
count
=
1
;
}
return
{
height
:
`
${(
this
.
itemWidth
+
16
)
*
count
+
45
}
px`
}
},
tempTouchLength
(){
return
this
.
touchLength
>
0
?
this
.
touchLength
:
""
;
},
changeStyle
(){
this
.
changebtntop
=
!
this
.
changebtntop
;
this
.
render
(
this
.
year
,
this
.
month
);
},
init
()
{
const
now
=
new
Date
();
this
.
year
=
now
.
getFullYear
();
...
...
@@ -733,14 +787,14 @@
});
});
}
if
(
weekSwitch
||
this
.
changebtntop
)
{
if
(
weekSwitch
)
{
const
tempLength
=
temp
.
length
;
const
lastLineMonth
=
temp
[
tempLength
-
1
][
0
].
date
.
split
(
'-'
)[
1
];
// last line month
const
secondLastMonth
=
temp
[
tempLength
-
2
][
0
].
date
.
split
(
'-'
)[
1
];
// second-to-last line month
lastLineMonth
!==
secondLastMonth
&&
temp
.
splice
(
tempLength
-
1
,
1
);
}
this
.
monthDays
=
temp
;
if
(
weekSwitch
&&
!
this
.
isMonthRange
||
this
.
changebtntop
)
{
if
(
weekSwitch
&&
!
this
.
isMonthRange
)
{
if
(
this
.
positionWeek
)
{
let
payloadDay
=
''
;
let
searchIndex
=
true
;
...
...
src/components/app-calendar/icon.css
浏览文件 @
19f64bbe
...
...
@@ -14,9 +14,12 @@
.icon-arrow-left
:before
{
content
:
"\e501"
;
}
.sign
{
overflow
:
hidden
;
height
:
28px
;
width
:
100%
;
position
:
absolute
;
z-index
:
12
;
bottom
:
-11px
;
left
:
0
;
}
.sign-item
{
line-height
:
1
;
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录