From b76a60fbd22bb60cf9cdcf01d6af331d0bb4fb41 Mon Sep 17 00:00:00 2001 From: hejianhao <15708179461@qq.com> Date: 星期三, 19 三月 2025 20:10:26 +0800 Subject: [PATCH] 优化 --- H5/uni_modules/uview-ui/libs/util/calendar.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/H5/uni_modules/uview-ui/libs/util/calendar.js b/H5/uni_modules/uview-ui/libs/util/calendar.js index e006dea..471bb53 100644 --- a/H5/uni_modules/uview-ui/libs/util/calendar.js +++ b/H5/uni_modules/uview-ui/libs/util/calendar.js @@ -378,7 +378,7 @@ * @param m solar month * @param d solar day * @return JSON object - * @eg:console.log(calendar.solar2lunar(1987,11,01)); + * @eg: */ solar2lunar: function (y, m, d) { // 参数区间1900.1.31~2100.12.31 // 年份限定、上限 @@ -497,7 +497,7 @@ * @param d lunar day * @param isLeapMonth lunar month is leap or not.[如果是农历闰月第四个参数赋值true即可] * @return JSON object - * @eg:console.log(calendar.lunar2solar(1987,9,10)); + * @eg: */ lunar2solar: function (y, m, d, isLeapMonth) { // 参数区间1900.1.31~2100.12.1 var isLeapMonth = !!isLeapMonth -- Gitblit v1.7.1