小程式日曆表

2021-09-26 15:50:41 字數 1883 閱讀 7176

頁面

}  }}

取消確定

}年}月

js

component(,

/*** 元件的初始資料

*/data: ,

lifetimes: ,

detached: function() ,

},/**

* 元件的方法列表

*/methods: );

},/**

* 確認選擇

*/sure: function(e) );

},/**

* 展示彈框

*/show: function(e) );

},/**

* 滑動更改

*/bindchange: function(e) );

},/**

* 減月份

*/submonth: function(e) else

const changes = changedays(this.data.years[this.data.value[0]], this.data.months[this.data.value[1]]);

this.setdata();

},/**

* 加月份

*/addmonth: function(e) else

const changes = changedays(this.data.years[this.data.value[0]], this.data.months[this.data.value[1]]);

this.setdata();

}}})

//是否是閏年

function is_leap(year)

function initdate()

for (let i = 1; i <= 12; i++)

days.push(...changedays(date.getfullyear(), date.getmonth() + 1).days);

dayslist.push(...changedays(date.getfullyear(), date.getmonth() + 1).dayslist);

value[0] = date.getfullyear() - 1990;

value[1] = date.getmonth();

value[2] = date.getdate() - 1;

return

}/**

* 修改天數

* @param month 月份

*/function changedays(year, month)

for (let i = 1; i <= leng; i++)

let nweek = new date(year, month - 1, 1).getday(); //獲取當月第一天是星期幾

for (let i = 0; i < nweek; i++)

dayslist.push(...days);

return ;

}

樣式

.body 

.body .time

.body .img

.body .rotate

.body .text

.month

.week

.days

.temp

.days .day

.days .dayon

.picker-father

.picker-father .top

.picker

.picker .item

.mengban

mysql 日曆表 mysql建立日曆表

最近開發遇到乙個需求,需要統計一段時間內每天的各種資料,發現某天沒有的資料沒法顯示出來,所以這時候用一張日曆表去聯合查詢即能獲得每天的資料 建立日曆表用到adddate這個系統函式,這個函式會自動為給定的日期新增指定的時間間隔,adddate 2017 06 20 1 會得出2017 06 21,利...

mysql dateofweek 日曆表 月的週數

我有乙個日曆表,其中包含2000年至2012年的資料 2012年不是故意的!我只是意識到我沒有月份的星期數 例如1月1,2,3,4 2月1,2,3,4 如何計算乙個月中的星期幾以填寫此表?這是表架構 create table tcalendar timekey int not null fullda...

SQL server自動建立日曆表。

做 功能需要統計每個月的上班天數,節假日因為每年的日期都不一樣,所以需要自己手動更新這些節假日 1 首先先自動建立乙個日曆表,選擇開始年月日和結束的年月日 不要同時執行,先執行建立表之後 create table dbo time dimension time id int identity 1,1...