22 lines
408 B
TypeScript
22 lines
408 B
TypeScript
// logs.ts
|
|
// const util = require('../../utils/util.js')
|
|
import { formatTime } from '../../utils/util'
|
|
|
|
Component({
|
|
data: {
|
|
logs: [],
|
|
},
|
|
lifetimes: {
|
|
attached() {
|
|
this.setData({
|
|
logs: (wx.getStorageSync('logs') || []).map((log: string) => {
|
|
return {
|
|
date: formatTime(new Date(log)),
|
|
timeStamp: log
|
|
}
|
|
}),
|
|
})
|
|
}
|
|
},
|
|
})
|