visitList.wxml 853 B

123456789101112131415
  1. <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>
  2. <view class="b1">
  3. <van-row style='text-align:center;color:#333333'>
  4. <van-col span="6">老人姓名</van-col>
  5. <van-col span="12">巡访时间</van-col>
  6. <van-col span="6">操作</van-col>
  7. </van-row>
  8. </view>
  9. <view class="b1" style='font-weight:500' wx:for="{{arr}}" wx:key="index">
  10. <van-row style='text-align:center;' bindtap='go' data-item='{{item._id}}'>
  11. <van-col span="6" style='color:#333333'>{{item.oldInfo}}</van-col>
  12. <van-col span="12" style='color:#666666'>{{item.visitTime}}</van-col>
  13. <van-col span="5" style='font-weight:600;color:#2087f7;'>查看详情</van-col>
  14. </van-row>
  15. </view>