Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
f4250d6f
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6000
Star
91
Fork
163
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f4250d6f
编写于
9月 12, 2023
作者:
M
mehaotian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 修改日历示例代码类型警告问题
上级
4f77d055
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
7 deletion
+9
-7
pages/template/calendar/calendar.uts
pages/template/calendar/calendar.uts
+5
-5
pages/template/calendar/calendar.uvue
pages/template/calendar/calendar.uvue
+4
-2
未找到文件。
pages/template/calendar/calendar.uts
浏览文件 @
f4250d6f
...
...
@@ -125,7 +125,7 @@ export class Lunar {
* 返回农历y年闰月是哪个月;若y年没有闰月 则返回0
* @param lunar Year
* @return Number (0-12)
* @eg:let leapMonth = calendar.leapMonth(1987) ;//leapMonth=6
* @eg:let leapMonth = calendar.leapMonth(1987) ;//leapMonth=6
*/
leapMonth(year : number) : number {
return lunarYears[year - 1900] & 0xF;
...
...
@@ -146,7 +146,7 @@ export class Lunar {
// 某年份农历各月天数
lunarMonthDays(year : number) : number[] {
let monthDays = this.lunarMonthDaysMap.get(year)
if (monthDays != null) {
return monthDays
...
...
@@ -164,7 +164,7 @@ export class Lunar {
// 添加闰月
let leapM = this.leapMonth(year);
if (leapM > 0) monthDays.splice(leapM, 0, leapDays(year));
if (leapM > 0) monthDays.splice(leapM, 0,
this.
leapDays(year));
this.lunarMonthDaysMap.set(year, monthDays)
return monthDays;
...
...
@@ -265,7 +265,7 @@ export class Lunar {
} else {
// 补偿公历1901年2月的农历信息
if (offset == -23) {
cons
t info : InfoType = {
le
t info : InfoType = {
lunarY: i,
lunarM: 12,
lunarD: 8,
...
...
@@ -294,4 +294,4 @@ export class Lunar {
return info
}
}
\ No newline at end of file
}
pages/template/calendar/calendar.uvue
浏览文件 @
f4250d6f
...
...
@@ -140,7 +140,8 @@
// 绘制日历顶部信息
drawHeader() {
const refs = this.$refs['draw-header'] as INode
let ctx = refs.getDrawableContext()
let ctx = refs.getDrawableContext()
if (ctx == null) return
const date_header_map = ['一', '二', '三', '四', '五', '六', '日']
const width = refs.getBoundingClientRect().width
...
...
@@ -168,6 +169,7 @@
const start_time = Date.now()
const refs = this.$refs['draw-weeks'] as INode
let ctx = refs.getDrawableContext()
if (ctx == null) return
const dom = refs.getBoundingClientRect()
const width = dom.width
const height = dom.height
...
...
@@ -283,4 +285,4 @@
justify-content: space-between;
margin: 20px 0;
}
</style>
\ No newline at end of file
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录