chore[litemall-wx]: 删除无用log页面

This commit is contained in:
Junling Bu
2018-07-19 20:44:43 +08:00
parent 73942dc3f1
commit b4c875f8b5
4 changed files with 0 additions and 31 deletions

View File

@@ -1,14 +0,0 @@
//logs.js
var util = require('../../utils/util.js')
Page({
data: {
logs: []
},
onLoad: function () {
this.setData({
logs: (wx.getStorageSync('logs') || []).map(function (log) {
return util.formatTime(new Date(log))
})
})
}
})

View File

@@ -1,3 +0,0 @@
{
"navigationBarTitleText": "查看启动日志"
}

View File

@@ -1,6 +0,0 @@
<!--logs.wxml-->
<view class="container log-list">
<block wx:for="{{logs}}" wx:for-item="log">
<text class="log-item">{{index + 1}}. {{log}}</text>
</block>
</view>

View File

@@ -1,8 +0,0 @@
.log-list {
display: flex;
flex-direction: column;
padding: 40rpx;
}
.log-item {
margin: 10rpx;
}