You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.6 KiB
Plaintext

2 years ago
<wxs src="../../common.wxs" module="commonUtil" />
<view class="container smd-container">
<block wx:if="{{recordList != null && recordList.length > 0}}">
<view class="mb16 bgf" hover-class="hcb" style="border-radius:16rpx;" bindtap="toDetail" data-serviceorderid="{{item.id}}" data-followid="{{item.userFollowId}}" data-type="{{item.type}}" data-jobtype="{{item.jobType}}" wx:for="{{recordList}}" wx:for-item="item" wx:for-index="idx">
<view class="display-flex p1220 bb1">
<view class="cardTitle">
{{item.serviceOrderStatusName}}
<text class="f14 c030" data-tel="{{item.assistantUserTel}}" catchtap="makePhone">@{{item.assistantUserName}}</text>
</view>
<view class="cardTime">
{{commonUtil.timeagoLater(item.notifyTime)}}
</view>
</view>
<view class="p1220">
<view class="f17 c009">
{{item.storeName}} {{item.jobName}}
</view>
<view class="mt8">
<view class="leftText">
{{item.workSalaryInfo}}
</view>
<view class="f17 c009 mt12">
{{item.userNameInfo}}
</view>
<view class="f17 c009 mt8">
{{item.orderStatusTimeStr}}
<!-- {{item.currTime}} -->
</view>
</view>
</view>
</view>
</block>
<block wx:else>
<view style="margin-top:128rpx;">
<view class="center">
<icon class='t-icon cccc t-icon-zanwu' style='width:86px;height:86px;margin-bottom:20px;margin-top:30px'></icon>
<view class="f16 cccc">暂无记录</view>
</view>
</view>
</block>
</view>