allocated.wxml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <view class="body">
  2. <view class="top">
  3. <view class="time">
  4. <picker mode="date" value="{{date}}" start="2020-09-01" end="2100-09-01" bindchange="bindDateChange">
  5. <view class="picker">
  6. <text>{{date}}</text>
  7. <image src="/img/xiajiantou.png" style="width:30rpx;height:30rpx;margin-left:6rpx;"></image>
  8. </view>
  9. </picker>
  10. </view>
  11. <view class="yutang">
  12. <view wx:for="{{items}}" class="{{yuIndex==index?'active' :''}}" bindtap="yutang" data-index="{{index}}">
  13. <text>{{item.name}}</text>
  14. <text class="text" wx:if="{{yuIndex==index}}"></text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="list" wx:if="{{arr!=''}}">
  19. <view wx:for="{{arr}}" class="view">
  20. <text>昵称:{{item.user.nickname}}</text>
  21. <text>手机号:{{item.user.mobile}}</text>
  22. <text>预约时间:{{item.subscribe_day}}</text>
  23. <text>预约鱼塘:{{item.seat.name}}</text>
  24. <text>座位号:{{item.seat_no}}</text>
  25. </view>
  26. </view>
  27. <view class="none" wx:else>
  28. <text>暂无数据~</text>
  29. </view>
  30. </view>