12345678910111213141516171819202122232425262728 |
- <view>
- <view style="background:#fff;padding:24rpx" class="margin-bottom">
- {{dataList.length}}人已抢单,其中<text class="blue">{{returnNum}}</text>人已完成
- </view>
- <scroll-view class="main" scroll-y="{{true}}">
- <view class="flex-box flex-v-ce li" a:for="{{dataList}}">
- <label class="flex-box-ce flex-1 userItem">
- <img-box imgUrl="{{item.img_url}}" name="{{item.employee_name}}" height="90rpx" width="90rpx" fSize="24rpx"></img-box>
- <view class="flex-1" style="margin-left:20rpx;">
- <view class="flex-box-ce" style="margin-bottom:8rpx">
- <view class="flex-1" style="padding-right:20rpx"><text class="font-flex-word" style="max-width:3rem;display: block;">{{item.employee_name}}</text></view>
- <view>
- <text a:if="{{item.status==1}}" class="orange">进行中</text>
- <text a:if="{{item.status==2}}" class="blue">已完成</text>
- <text a:if="{{item.status==3}}" class="fontColorB">退回</text>
- <text a:if="{{item.status==4}}" class="green">已审批</text>
- <text a:if="{{item.status==5}}" class="fontColorB">发布者已撤回</text>
- </view>
- </view>
- <view class="flex-box-ce fontColorC" style="font-size:24rpx">
- <view class="flex-1" style="padding-right:20rpx"><text class="font-flex-word" style="max-width:3rem;display: block;">{{item.dept}}</text></view>
- <view>{{item.create_time}}</view>
- </view>
- </view>
- </label>
- </view>
- </scroll-view>
- </view>
|