123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- Page({
-
- data: {
- date: "",
- show: "ture",
- },
-
- onLoad(options) {},
- serverd: function () {
- const year = new Date().getFullYear();
- const month = new Date().getMonth() + 1;
- const day = new Date().getDate();
- const hour = new Date().getHours();
- const minute = new Date().getMinutes();
- const second = new Date().getSeconds();
-
-
-
- this.setData({
- date: `${year+'-'+month+'-'+day+' '+hour+':'+minute+':'+second}`,
- show:!true
- });
- },
-
- onReady() {},
-
- onShow() {},
-
- onHide() {},
-
- onUnload() {},
-
- onPullDownRefresh() {},
-
- onReachBottom() {},
-
- onShareAppMessage() {},
- });
|