健康报告生成
This commit is contained in:
20
pages/healthDocs/index.wxml
Normal file
20
pages/healthDocs/index.wxml
Normal file
@@ -0,0 +1,20 @@
|
||||
<!--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>
|
||||
Reference in New Issue
Block a user