| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675 |
- <template>
- <CustomNav title="心率" leftType="back" />
- <view class="page">
- <view class="header">
- <view class="month-selector">
- <button class="btn" @click="prevPeriod">‹</button>
- <view class="period-controls">
- <picker mode="multiSelector" :value="pickerValue" :range="pickerRange" @change="onPickerChange">
- <view class="month-label">{{ displayPeriod }}</view>
- </picker>
- <view class="view-toggle">
- <button :class="['toggle-btn', { active: viewMode === 'month' }]" @click="setViewMode('month')">月</button>
- <button :class="['toggle-btn', { active: viewMode === 'week' }]" @click="setViewMode('week')">周</button>
- </view>
- </view>
- <button class="btn" @click="nextPeriod">›</button>
- </view>
- </view>
- <!-- 趋势图 - 简化canvas设置 -->
- <view class="chart-wrap">
- <view class="chart-header">本月趋势</view>
- <canvas
- canvas-id="hrChart"
- id="hrChart"
- class="chart-canvas"
- :style="{ width: canvasWidth + 'px', height: canvasHeight + 'px' }"
- ></canvas>
- </view>
- <view class="content">
- <view class="summary">共 {{ records.length }} 条记录,本月平均:{{ averageHR }} bpm</view>
- <view class="list">
- <view v-if="records.length === 0" class="empty">暂无记录,点击右下角 + 添加</view>
- <view v-for="item in records" :key="item.id" class="list-item">
- <view class="date">{{ item.date }}</view>
- <view class="value">{{ item.hr }} bpm</view>
- <button class="btn-delete" @click="confirmDeleteRecord(item.id)">✕</button>
- </view>
- </view>
- </view>
- <view class="fab" @click="openAdd">
- <view class="fab-inner">+</view>
- </view>
- <view class="modal" v-if="showAdd">
- <view class="modal-backdrop" @click="closeAdd"></view>
- <view class="modal-panel">
- <view class="drag-handle"></view>
- <view class="modal-header"><text class="modal-title">添加心率</text></view>
- <view class="modal-inner">
- <view class="form-row">
- <text class="label">日期</text>
- <picker mode="date" :value="addDate" @change="onAddDateChange">
- <view class="picker-display">{{ addDateLabel }}</view>
- </picker>
- </view>
- <view class="form-row">
- <text class="label">心率 (bpm)</text>
- <input type="number" v-model.number="addHR" class="input" placeholder="请输入心率" />
- </view>
- </view>
- <view class="ruler-wrap">
- <ScaleRuler v-if="showAdd" :min="30" :max="200" :step="1" :gutter="16" :initialValue="addHR ?? 72" @update="onAddRulerUpdate" @change="onAddRulerChange" />
- </view>
- <view class="fixed-footer">
- <button class="btn-primary btn-full" @click="confirmAdd">保存</button>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import { ref, computed, onMounted, watch, nextTick, onBeforeUnmount, getCurrentInstance } from 'vue'
- import { createUChart } from '@/composables/useUChart'
- import CustomNav from '@/components/custom-nav.vue'
- import ScaleRuler from '@/components/scale-ruler.vue'
- import { getWeekStart, getWeekEnd, formatDisplayDate, formatPickerDate, daysInMonth, getTodayStart, isAfterTodayDate, isMonthAfterToday, isWeekAfterToday } from '@/utils/date'
- import { getWindowWidth } from '@/utils/platform'
- type RecordItem = { id: string; date: string; hr: number }
- // 当前展示年月
- const current = ref(new Date())
- // picker 使用 multiSelector,两列:年份偏移(2000起),月份(0-11)
- const pickerValue = ref([current.value.getFullYear() - 2000, current.value.getMonth()])
- // 视图模式:'month' 或 'week'
- const viewMode = ref<'month' | 'week'>('month')
- // 年月选择器的选项范围
- const pickerRange = ref([
- Array.from({ length: 50 }, (_, i) => `${2000 + i}年`),
- Array.from({ length: 12 }, (_, i) => `${i + 1}月`)
- ])
- // 明确的canvas尺寸(将由 getCanvasSize 初始化以匹配设备宽度)
- const canvasWidth = ref(700) // 初始值,会在 mounted 时覆盖
- const canvasHeight = ref(280)
- // 获取Canvas实际尺寸的函数 - 参考微信小程序示例使用固定尺寸
- function getCanvasSize(): Promise<{ width: number; height: number }> {
- return new Promise(async (resolve) => {
- const width = await getWindowWidth().catch(() => 375)
- const height = Math.round((280 / 750) * width)
- resolve({ width, height })
- })
- }
- // 使用共享日期工具 (src/utils/date.ts)
- const displayYear = computed(() => current.value.getFullYear())
- const displayMonth = computed(() => current.value.getMonth() + 1)
- const displayPeriod = computed(() => {
- if (viewMode.value === 'month') {
- return `${displayYear.value}年 ${displayMonth.value}月`
- } else {
- const weekStart = getWeekStart(current.value)
- const weekEnd = getWeekEnd(current.value)
- return `${formatDisplayDate(weekStart)} - ${formatDisplayDate(weekEnd)}`
- }
- })
- const records = ref<RecordItem[]>(generateMockRecords(current.value))
- function generateMockRecords(d: Date): RecordItem[] {
- const arr: RecordItem[] = []
- if (viewMode.value === 'month') {
- const y = d.getFullYear()
- const m = d.getMonth()
- const days = daysInMonth(y, m)
- const n = Math.floor(Math.random() * Math.min(days, 7))
- for (let i = 0; i < n; i++) {
- const day = Math.max(1, Math.floor(Math.random() * days) + 1)
- const date = new Date(y, m, day)
- arr.push({ id: `${date.getTime()}${i}${Date.now()}`, date: formatDisplayDate(date), hr: Math.floor(50 + Math.random() * 70) })
- }
- } else {
- const weekStart = getWeekStart(d)
- const n = Math.floor(Math.random() * 7)
- for (let i = 0; i < n; i++) {
- const dayOffset = Math.floor(Math.random() * 7)
- const date = new Date(weekStart)
- date.setDate(weekStart.getDate() + dayOffset)
- arr.push({ id: `${date.getTime()}${i}${Date.now()}`, date: formatDisplayDate(date), hr: Math.floor(50 + Math.random() * 70) })
- }
- }
- return arr.sort((a, b) => (a.date < b.date ? 1 : -1))
- }
- // 获取指定日期所在周的开始日期(星期一),并规范化到本地午夜
- // 使用共享日期工具 (src/utils/date.ts)
- // 将 records 聚合为每天一个点(取最新记录)
- function aggregateDaily(recordsArr: RecordItem[], year: number, month: number) {
- const map = new Map<number, RecordItem>()
- for (const r of recordsArr) {
- const parts = r.date.split('-')
- if (parts.length >= 3) {
- const y = parseInt(parts[0], 10)
- const m = parseInt(parts[1], 10) - 1
- const d = parseInt(parts[2], 10)
- if (y === year && m === month) {
- // 覆盖同一天,保留最新的(数组头部为最新)
- map.set(d, r)
- }
- }
- }
- // 返回按日索引的数组
- return map
- }
- // 使用 formatDisplayDate 从 src/utils/date.ts
- const averageHR = computed(() => {
- if (records.value.length === 0) return '--'
- const sum = records.value.reduce((s, r) => s + r.hr, 0)
- return (sum / records.value.length).toFixed(0)
- })
- // 使用 daysInMonth 从 src/utils/date.ts
- // 使用可复用的 chart composable(单序列)
- const vm = getCurrentInstance()
- const hrChart = createUChart({
- canvasId: 'hrChart',
- vm,
- getCanvasSize,
- seriesNames: '心率',
- valueAccessors: (r: RecordItem) => r.hr,
- colors: '#ff6a00'
- })
- onMounted(() => {
- // 延迟确保DOM渲染完成并设置canvas尺寸
- setTimeout(async () => {
- await nextTick()
- try {
- const size = await getCanvasSize()
- canvasWidth.value = size.width
- canvasHeight.value = size.height
- } catch (e) {
- console.warn('getCanvasSize failed on mounted', e)
- }
- await hrChart.draw(records, current, viewMode)
- }, 500)
- })
- // 监听并更新图表(轻微去抖)
- watch([() => current.value], async () => {
- setTimeout(async () => {
- await hrChart.update(records, current, viewMode)
- }, 100)
- })
- watch([() => records.value], async () => {
- setTimeout(async () => {
- await hrChart.update(records, current, viewMode)
- }, 100)
- }, { deep: true })
- onBeforeUnmount(() => {
- try { hrChart.destroy() } catch (e) { console.warn('hrChart destroy error', e) }
- })
- // 强制重建图表(用于切换月份时彻底刷新)
- async function rebuildChart() {
- try { await hrChart.rebuild(records, current, viewMode) } catch (e) { console.warn('rebuildChart failed', e) }
- }
- // 使用共享日期工具(在 src/utils/date.ts 中定义)
- // 周/月周期切换与 picker 处理
- async function prevPeriod() {
- const d = new Date(current.value)
- if (viewMode.value === 'month') d.setMonth(d.getMonth() - 1)
- else d.setDate(d.getDate() - 7)
- current.value = d
- pickerValue.value = [d.getFullYear() - 2000, d.getMonth()]
- records.value = generateMockRecords(d)
- await rebuildChart()
- }
- async function nextPeriod() {
- const d = new Date(current.value)
- if (viewMode.value === 'month') {
- d.setMonth(d.getMonth() + 1)
- if (isMonthAfterToday(d)) {
- uni.showToast && uni.showToast({ title: '不能查看未来的日期', icon: 'none' })
- return
- }
- } else {
- d.setDate(d.getDate() + 7)
- if (isWeekAfterToday(d)) {
- uni.showToast && uni.showToast({ title: '不能查看未来的日期', icon: 'none' })
- return
- }
- }
- current.value = d
- pickerValue.value = [d.getFullYear() - 2000, d.getMonth()]
- records.value = generateMockRecords(d)
- await rebuildChart()
- }
- async function setViewMode(mode: 'month' | 'week') {
- if (viewMode.value !== mode) {
- viewMode.value = mode
- records.value = generateMockRecords(current.value)
- await rebuildChart()
- }
- }
- async function onPickerChange(e: any) {
- const val = e?.detail?.value || e
- if (Array.isArray(val) && val.length >= 2) {
- const y = 2000 + Number(val[0])
- const m = Number(val[1])
- let d = new Date(y, m, 1)
- if (isMonthAfterToday(d)) {
- const today = getTodayStart()
- uni.showToast && uni.showToast({ title: '不能选择未来的月份,已切换到当前月份', icon: 'none' })
- d = new Date(today.getFullYear(), today.getMonth(), 1)
- pickerValue.value = [today.getFullYear() - 2000, today.getMonth()]
- } else {
- pickerValue.value = [Number(val[0]), Number(val[1])]
- }
- current.value = d
- records.value = generateMockRecords(d)
- await rebuildChart()
- }
- }
- // 添加逻辑保持不变
- const showAdd = ref(false)
- const addDate = ref(formatPickerDate(new Date()))
- const addDateLabel = ref(formatDisplayDate(new Date()))
- const addHR = ref<number | null>(null)
- function onAddRulerUpdate(val: number) {
- addHR.value = Math.round(val)
- }
- function onAddRulerChange(val: number) {
- addHR.value = Math.round(val)
- }
- function openAdd() {
- showAdd.value = true
- if (!addHR.value) addHR.value = 72
- }
- function closeAdd() {
- showAdd.value = false
- addHR.value = null
- }
- function onAddDateChange(e: any) {
- const val = e?.detail?.value || e
- const parts = (val || '').split('-')
- const y = parseInt(parts[0] || '', 10)
- const m = parseInt(parts[1] || '1', 10) - 1
- const d = parseInt(parts[2] || '1', 10)
- const sel = new Date(y, m, d)
- if (isAfterTodayDate(sel)) {
- const today = getTodayStart()
- uni.showToast && uni.showToast({ title: '不能选择未来的日期,已切换到今天', icon: 'none' })
- addDate.value = formatPickerDate(today)
- addDateLabel.value = formatDisplayDate(today)
- return
- }
- addDate.value = val
- addDateLabel.value = val.replace(/^(.{10}).*$/, '$1')
- }
- async function confirmAdd() {
- if (!addHR.value) {
- uni.showToast && uni.showToast({ title: '请输入心率', icon: 'none' })
- return
- }
- const id = `user-${Date.now()}`
- const item: RecordItem = { id, date: addDateLabel.value, hr: addHR.value }
- const parts = addDate.value.split('-')
- const addY = parseInt(parts[0], 10)
- const addM = parseInt(parts[1], 10) - 1
- const addD = parseInt(parts[2], 10)
- const addDateObj = new Date(addY, addM, addD)
- if (isAfterTodayDate(addDateObj)) {
- uni.showToast && uni.showToast({ title: '不能添加未来日期的数据', icon: 'none' })
- return
- }
- let isInCurrentPeriod = false
- if (viewMode.value === 'month') {
- isInCurrentPeriod = addY === current.value.getFullYear() && addM === current.value.getMonth()
- } else {
- const weekStart = getWeekStart(current.value)
- const recordWeekStart = getWeekStart(addDateObj)
- isInCurrentPeriod = weekStart.getTime() === recordWeekStart.getTime()
- }
- if (isInCurrentPeriod) records.value = [item, ...records.value]
- uni.showToast && uni.showToast({ title: '已添加', icon: 'success' })
- closeAdd()
- // 新增记录后彻底重建图表,确保像退出再进入一样刷新
- try {
- await rebuildChart()
- } catch (e) {
- console.warn('rebuildChart after add failed', e)
- }
- }
- async function confirmDeleteRecord(id: string) {
- if (typeof uni !== 'undefined' && uni.showModal) {
- uni.showModal({
- title: '删除',
- content: '确认删除该条记录吗?',
- success: async (res: any) => {
- if (res.confirm) {
- records.value = records.value.filter(r => r.id !== id)
- try { await rebuildChart() } catch (e) { console.warn('rebuildChart after delete failed', e) }
- }
- }
- })
- } else {
- records.value = records.value.filter(r => r.id !== id)
- try { await rebuildChart() } catch (e) { console.warn('rebuildChart after delete failed', e) }
- }
- }
- </script>
- <style scoped>
- .page {
- min-height: calc(100vh);
- padding-top: calc(var(--status-bar-height) + 44px);
- background: #f5f6f8;
- box-sizing: border-box
- }
- .header {
- padding: 20rpx 40rpx
- }
- .month-selector {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 12rpx
- }
- .period-controls {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 8rpx;
- }
- .view-toggle {
- display: flex;
- gap: 4rpx;
- }
- .toggle-btn {
- padding: 4rpx 12rpx;
- border: 1rpx solid #ddd;
- background: #f5f5f5;
- color: #666;
- border-radius: 6rpx;
- font-size: 24rpx;
- min-width: 60rpx;
- text-align: center;
- }
- .toggle-btn.active {
- background: #ff6a00;
- color: #fff;
- border-color: #ff6a00;
- }
- .month-label {
- font-size: 34rpx;
- color: #333
- }
- .btn {
- background: transparent;
- border: none;
- font-size: 36rpx;
- color: #666
- }
- .content {
- padding: 20rpx 24rpx 100rpx 24rpx
- }
- .chart-wrap {
- height: 340rpx;
- overflow: hidden; /* 隐藏溢出内容 */
- background: #fff;
- border-radius: 12rpx;
- padding: 24rpx;
- margin: 0 24rpx 20rpx 24rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03)
- }
- .chart-header {
- font-size: 32rpx;
- color: #333;
- margin-bottom: 20rpx;
- font-weight: 600
- }
- /* 关键修复:确保canvas样式正确,参考微信小程序示例 */
- .chart-canvas { margin-left: -10rpx;
- height: 280rpx;
- background-color: #FFFFFF;
- display: block;
- }
- .summary {
- padding: 20rpx;
- color: #666;
- font-size: 28rpx
- }
- .list {
- background: #fff;
- border-radius: 12rpx;
- padding: 10rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03)
- }
- .empty {
- padding: 40rpx;
- text-align: center;
- color: #999
- }
- .list-item {
- display: flex;
- align-items: center;
- padding: 20rpx;
- border-bottom: 1rpx solid #f0f0f0
- }
- .list-item .date {
- color: #666
- }
- .list-item .value {
- color: #333;
- font-weight: 600;
- flex: 1;
- text-align: right
- }
- .btn-delete {
- width: 80rpx;
- height: 60rpx;
- min-width: 60rpx;
- min-height: 60rpx;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- background: #fff0f0;
- color: #d9534f;
- border: 1rpx solid rgba(217,83,79,0.15);
- border-radius: 8rpx;
- margin-left: 30rpx
- }
- .fab {
- position: fixed;
- right: 28rpx;
- bottom: 160rpx;
- width: 110rpx;
- height: 110rpx;
- border-radius: 999px;
- background: linear-gradient(180deg, #ff7a00, #ff4a00);
- display: flex;
- align-items: center;
- justify-content: center;
- box-shadow: 0 6rpx 18rpx rgba(0, 0, 0, 0.2);
- z-index: 1200
- }
- .fab-inner {
- color: #fff;
- font-size: 56rpx;
- line-height: 56rpx
- }
- .modal {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- z-index: 1300
- }
- .modal-backdrop {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.4)
- }
- .modal-panel {
- position: relative;
- width: 100%;
- background: #fff;
- border-top-left-radius: 18rpx;
- border-top-right-radius: 18rpx;
- padding: 28rpx 24rpx 140rpx 24rpx;
- box-shadow: 0 -8rpx 30rpx rgba(0,0,0,0.12)
- }
- .modal-title {
- font-size: 56rpx;
- margin-block: 60rpx;
- color: #222;
- font-weight: 700;
- letter-spacing: 1rpx
- }
- .modal-inner {
- max-width: 70%;
- margin: 0 auto
- }
- .form-row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 34rpx;
- padding: 14rpx 0;
- font-size: 32rpx
- }
- .input {
- width: 150rpx;
- text-align: right;
- padding: 16rpx;
- border-radius: 14rpx;
- border: 1rpx solid #eee;
- background: #fff7f0
- }
- .picker-display {
- color: #333
- }
- .btn-primary {
- background: #ff6a00;
- color: #fff;
- padding: 18rpx 22rpx;
- border-radius: 16rpx;
- text-align: center;
- width: 50%;
- box-shadow: 0 10rpx 28rpx rgba(255,106,0,0.18)
- }
- .drag-handle {
- width: 64rpx;
- height: 6rpx;
- background: rgba(0,0,0,0.08);
- border-radius: 999px;
- margin: 10rpx auto 14rpx auto
- }
- .modal-header {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 12rpx;
- margin-bottom: 6rpx
- }
- .label {
- color: #666
- }
- .ruler-wrap {
- margin: 12rpx 0
- }
- .fixed-footer {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 40rpx;
- padding: 0 24rpx
- }
- .btn-full {
- width: 100%;
- padding: 18rpx;
- border-radius: 12rpx;
- }
- </style>
|