feat: init project with miniprogram, cloud functions and admin console

这个提交包含在:
Guoguo
2026-04-22 21:24:20 +08:00
当前提交 a84e37a6e2
修改 106 个文件,包含 5902 行新增0 行删除
+64
查看文件
@@ -0,0 +1,64 @@
var http = require('../../utils/request')
var ble = require('../../services/ble')
Page({
data: {
records: [],
total: 0,
page: 1,
pageSize: 20,
loading: true,
loadingMore: false
},
onShow: function () {
this.loadRecords(true)
},
onPullDownRefresh: function () {
this.loadRecords(true).then(function () {
wx.stopPullDownRefresh()
})
},
onReachBottom: function () {
if (this.data.records.length < this.data.total) {
this.loadRecords(false)
}
},
loadRecords: function (refresh) {
var self = this
var page = refresh ? 1 : self.data.page + 1
if (refresh) {
self.setData({ loading: true })
} else {
self.setData({ loadingMore: true })
}
return http.get('/api/v1/treatment/history', {
page: page,
page_size: self.data.pageSize
}).then(function (data) {
var records = (data.records || []).map(function (r) {
var durationMin = Math.floor((r.total_duration_ms || 0) / 60000)
r.duration_text = durationMin + '分钟'
r.region_names = ble.getRegionName(r.regions || 0).join('、')
r.wavelength_name = ble.getWavelengthName(r.wavelength || 2)
r.date_text = r.start_time ? r.start_time.slice(0, 10) : ''
return r
})
self.setData({
records: refresh ? records : self.data.records.concat(records),
total: data.total || 0,
page: page,
loading: false,
loadingMore: false
})
}).catch(function () {
self.setData({ loading: false, loadingMore: false })
})
}
})
+3
查看文件
@@ -0,0 +1,3 @@
{
"navigationBarTitleText": "护理记录"
}
+26
查看文件
@@ -0,0 +1,26 @@
<view class="container">
<view wx:if="{{loading}}" class="empty-state">
<text class="text-muted">加载中...</text>
</view>
<view wx:elif="{{records.length === 0}}" class="empty-state">
<view class="empty-icon">&#128209;</view>
<view class="empty-text">暂无护理记录</view>
</view>
<view wx:else>
<view class="record-count text-muted mb-20">共 {{total}} 条记录</view>
<view wx:for="{{records}}" wx:key="record_id" class="card record-card">
<view class="flex-between mb-10">
<text class="record-date">{{item.date_text}}</text>
<text class="record-duration">{{item.duration_text}}</text>
</view>
<view class="text-muted record-regions">{{item.region_names}}</view>
</view>
<view wx:if="{{loadingMore}}" class="text-center text-muted mt-20">
加载更多...
</view>
</view>
</view>
+22
查看文件
@@ -0,0 +1,22 @@
.record-count {
font-size: 24rpx;
}
.record-card {
padding: 24rpx 32rpx;
}
.record-date {
font-size: 28rpx;
font-weight: 500;
}
.record-duration {
font-size: 26rpx;
color: #333333;
}
.record-regions {
font-size: 24rpx;
margin-top: 4rpx;
}