mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-07 05:38:15 +00:00
16 lines
261 B
JavaScript
16 lines
261 B
JavaScript
//logs.js
|
|
const util = require('../../utils/util.js')
|
|
|
|
Page({
|
|
data: {
|
|
logs: []
|
|
},
|
|
onLoad: function () {
|
|
this.setData({
|
|
logs: (wx.getStorageSync('logs') || []).map(log => {
|
|
return util.formatTime(new Date(log))
|
|
})
|
|
})
|
|
}
|
|
})
|