21 lines
798 B
Plaintext
21 lines
798 B
Plaintext
<!--pages/healthDocs/index.wxml-->
|
|
<wxs src="./filter.wxs" module="filter" />
|
|
<header isGoHome="{{isGoHome}}"></header>
|
|
<view class='container'>
|
|
<view class='list'>
|
|
<view class='cell-box' wx:for='{{docs}}' wx:key='{{index}}' bindtap='clickCell' data-id='{{item.docPath}}'>
|
|
<view class='cell'>
|
|
<view class='title'>报告名称:{{item.docName}}</view>
|
|
<view class='address'>
|
|
<text>报告类型:{{item.docType == 0 ? "健康报告" : "未知类型"}}</text>
|
|
<text>报告日期:{{filter.dateFormatStr(item.docDate)}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='newplot' wx:if="{{isShowNewplot && docs.length == 0}}">
|
|
<image src='../../images/noContent.png'></image>
|
|
<text>暂无健康报告 ~</text>
|
|
</view>
|