创建新的小程序,进出码,体温上报功能迁移基本完成
This commit is contained in:
21
weixin-miniprogram/pages/residents/reportHistory.wxml
Normal file
21
weixin-miniprogram/pages/residents/reportHistory.wxml
Normal file
@@ -0,0 +1,21 @@
|
||||
<!--pages/residents/reportHistory.wxml-->
|
||||
<view>
|
||||
<view style="margin: 20px; text-align: center;">
|
||||
<text>姓名:{{ displayName }}</text>
|
||||
</view>
|
||||
<view class="container">
|
||||
<view class="item {{ item.temperature == 1 ? 'abnormal' : 'normal' }}" wx:for="{{displayResult}}" wx:for-item="item">
|
||||
<view>
|
||||
<view class="record_time">
|
||||
<!-- 填报时间: -->
|
||||
{{ item.time }}
|
||||
</view>
|
||||
<view class="record_address">
|
||||
<!-- 地址: -->
|
||||
{{ item.address }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="statusText">{{ item.temperature == 1 ? "异常" : "正常" }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
Reference in New Issue
Block a user