Initial Commit

This commit is contained in:
2025-11-16 15:47:44 +08:00
commit 00ca69761c
16 changed files with 334 additions and 0 deletions

6
pages/logs/logs.wxml Normal file
View File

@@ -0,0 +1,6 @@
<!--logs.wxml-->
<scroll-view class="scrollarea" scroll-y type="list">
<block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log">
<view class="log-item">{{index + 1}}. {{log.date}}</view>
</block>
</scroll-view>