信达小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
2.9 KiB

4 months ago
<navbar custom-style="background:{{background}}" fixed></navbar>
<view class="page">
<view class="page-header">
<van-tabs
active="{{ active }}"
color="#B982FF"
line-width="60rpx"
line-height="8rpx"
title-active-color="#211D2E"
title-inactive-color="#69686E"
bind:change="onChange"
>
<van-tab title="日"></van-tab>
<van-tab title="月度"></van-tab>
<van-tab title="年度"></van-tab>
</van-tabs>
<view class="form">
<view class="date">
<picker
bindchange="handleChange"
class="start"
end="{{EndMonth}}"
fields="day"
mode="date"
model:value="{{BeginMonth}}"
>
{{BeginMonth}}
</picker>
<view class="line">-</view>
<picker
bindchange="handleChange"
class="end"
fields="day"
mode="date"
model:value="{{EndMonth}}"
start="{{BeginMonth}}"
>
{{EndMonth}}
</picker>
<van-icon class="icon" name="play" />
</view>
</view>
</view>
<view class="chart-list">
<view class="chart-card">
<view class="title">GO-QOL整体记录曲线</view>
<view class="chart">
<ec-canvas id="chart1" ec="{{ ec }}"></ec-canvas>
</view>
</view>
<view class="chart-card">
<view class="title">GO-QOL视觉功能影响记录曲线</view>
<view class="chart">
<ec-canvas id="chart2" ec="{{ ec }}"></ec-canvas>
</view>
</view>
<view class="chart-card">
<view class="title">GO-QOL外观影响记录曲线</view>
<view class="chart">
<ec-canvas id="chart3" ec="{{ ec }}"></ec-canvas>
</view>
</view>
</view>
<view class="list">
<view class="list-title">我的历史测评报告</view>
<view class="list-container">
<view class="row" wx:for="{{2}}" wx:key="index">
<view class="aside">
<view class="line-top" style="opacity: 0"></view>
<view class="side"></view>
<view class="line"></view>
</view>
<view class="r-container">
<view class="date">评估日期:2025-09-02</view>
<view class="r-card">
<view class="wrap">
<view class="num">100</view>
<view class="inner">
<view class="label">轻度影响</view>
<view class="name">TED生活质量评分</view>
</view>
</view>
<view class="stat">
<view class="s-item">
视觉功能
<view class="score">30分</view>
</view>
<view class="s-item">
视觉功能
<view class="score">30分</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="page-footer">
<view class="btn">评测</view>
</view>
</view>