You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
732 B
19 lines
732 B
<view class="pend-num">
|
|
<image src="/img/pend-tips.png" style="width: 100%;" mode="widthFix"></image>
|
|
<view>当前待办事项:<text>{{count}}</text></view>
|
|
</view>
|
|
|
|
<view class="list-box" wx:for="{{listData}}" wx:key="index">
|
|
<view class="bt">{{item.name}}</view>
|
|
<view class="txt">
|
|
<view>{{item.taskName}}
|
|
<text class="tag">待审批</text>
|
|
</view>
|
|
<view>发起人:{{item.createName}}</view>
|
|
</view>
|
|
<view class="right">
|
|
<view class="time">{{item.createTime}}</view>
|
|
<view class="btn" catch:tap="toDetail" data-partnerId="{{item.partnerId}}" data-projectId="{{item.application_id}}" data-type="{{item.formKey}}">办理</view>
|
|
</view>
|
|
</view>
|
|
<view style="height: 150rpx;"></view> |