- <view style="font-size:28rpx;text-align:center;height:80rpx;background-color:#f9f9f7;width:750rpx;line-height:80rpx">巡访数量:<text style="color:#2087f7;font-weight:600">{{arr.length}}</text>条 (最多显示最近15条)</view>
- <view class="b1">
- <van-row style='text-align:center;color:#333333'>
- <van-col span="6">老人姓名</van-col>
- <van-col span="12">巡访时间</van-col>
- <van-col span="6">操作</van-col>
- </van-row>
- </view>
- <view class="b1" style='font-weight:500' wx:for="{{arr}}" wx:key="index">
- <van-row style='text-align:center;' bindtap='go' data-item='{{item._id}}'>
- <van-col span="6" style='color:#333333'>{{item.oldInfo}}</van-col>
- <van-col span="12" style='color:#666666'>{{item.visitTime}}</van-col>
- <van-col span="5" style='font-weight:600;color:#2087f7;'>查看详情</van-col>
- </van-row>
- </view>
|