customerList.wxml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <view class="content">
  2. <view class="top-text flex-column">
  3. <text class="text-1" >今日预约订单数:{{ homeData.order_num }}</text>
  4. <text style="font-size: 28rpx;color: #999999;margin-top: 12rpx;">今日服务订单数:{{ homeData.served_num }}</text>
  5. <view class="flex-align-center" style="margin-top: 12rpx;">
  6. <image src="/images/icon_05.png"></image>
  7. <text class="flex1 ellipsis" style="font-size: 24rpx;">{{ homeData.store_address }} {{ homeData.store_name }}</text>
  8. </view>
  9. </view>
  10. </view>
  11. <view class="list">
  12. <view class="item" wx:for="{{ list }}" wx:key="index">
  13. <view class="title">{{ item.word }}</view>
  14. <view class="item-content flex-align-center" wx:for="{{ item.list }}" wx:key="index">
  15. <image src="{{ item.avatar_url }}"></image>
  16. <text>{{ item.nickname }}</text>
  17. </view>
  18. </view>
  19. </view>
  20. <!-- font-size: 24px;
  21. font-family: PingFangSC-Regular, PingFang SC;
  22. font-weight: 400;
  23. color: #FF77B0; -->
  24. <view class="fixed flex-column flex-justify-center">
  25. <text style="font-size: 24rpx;color: #FF77B0;" wx:for="{{ list }}" wx:key="index">{{ item.word }}</text>
  26. </view>