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.
36 lines
1.1 KiB
36 lines
1.1 KiB
|
3 weeks ago
|
<view class="container">
|
||
|
|
<!-- 表格区域 -->
|
||
|
|
<view class="table-wrapper">
|
||
|
|
<!-- 吸顶表头 -->
|
||
|
|
<view class="table-header sticky">
|
||
|
|
<view class="th th-date">日期</view>
|
||
|
|
<view class="th th-eye">
|
||
|
|
<view class="th-eye-title">眼突度(mm)</view>
|
||
|
|
<view class="th-eye-sub">
|
||
|
|
<view class="th-sub-item">左侧</view>
|
||
|
|
<view class="th-sub-item">眶间距</view>
|
||
|
|
<view class="th-sub-item">右侧</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="th th-count">
|
||
|
|
<view>替妥尤</view>
|
||
|
|
<view>输注</view>
|
||
|
|
<view>次数</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<!-- 表格内容 -->
|
||
|
|
<view class="table-body">
|
||
|
|
<view class="tr" wx:for="{{dataList}}" wx:key="date">
|
||
|
|
<view class="td td-date">{{item.date}}</view>
|
||
|
|
<view class="td td-eye">
|
||
|
|
<view class="td-eye-item">{{item.left}}</view>
|
||
|
|
<view class="td-eye-item">{{item.spacing}}</view>
|
||
|
|
<view class="td-eye-item">{{item.right}}</view>
|
||
|
|
</view>
|
||
|
|
<view class="td td-count">{{item.count}}</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|