blob: b2b967d8ed9d14fb7decf903c9aad84eda43333e [file] [log] [blame]
binquan.qiu7f2665f2020-03-27 17:19:57 +08001//logs.js
2const util = require('../../utils/util.js')
3
4Page({
5 data: {
6 logs: []
7 },
8 onLoad: function () {
9 this.setData({
10 logs: (wx.getStorageSync('logs') || []).map(log => {
11 return util.formatTime(new Date(log))
12 })
13 })
14 }
15})