12345678910111213141516171819202122232425262728 |
- <view class="content">
- <view class="top-text flex-column">
- <text class="text-1" >今日预约订单数:{{ homeData.order_num }}</text>
- <text style="font-size: 28rpx;color: #999999;margin-top: 12rpx;">今日服务订单数:{{ homeData.served_num }}</text>
- <view class="flex-align-center" style="margin-top: 12rpx;">
- <image src="/images/icon_05.png"></image>
- <text class="flex1 ellipsis" style="font-size: 24rpx;">{{ homeData.store_address }} {{ homeData.store_name }}</text>
- </view>
- </view>
- </view>
- <view class="list">
- <view class="item" wx:for="{{ list }}" wx:key="index">
- <view class="title">{{ item.word }}</view>
- <view class="item-content flex-align-center" wx:for="{{ item.list }}" wx:key="index">
- <image src="{{ item.avatar_url }}"></image>
- <text>{{ item.nickname }}</text>
- </view>
- </view>
- </view>
- <!-- font-size: 24px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FF77B0; -->
- <view class="fixed flex-column flex-justify-center">
- <text style="font-size: 24rpx;color: #FF77B0;" wx:for="{{ list }}" wx:key="index">{{ item.word }}</text>
- </view>
|