- <view wx:for="{{backEndDoing}}" wx:key="index" class="tableContent">
- <view style="text-align: center; width: 100rpx; ">
- <view wx:if="{{item.state === '办结'}}" style="margin-top: 25rpx; margin-left: 15rpx; width: 63rpx;height: 33rpx;line-height: 33rpx; background: #4CAF50;border-radius: 4rpx;text-align: center; color: #fff;">完结</view>
- <view wx:if="{{item.state === '在办'}}" style="margin-top: 25rpx; margin-left: 15rpx; width: 63rpx;height: 33rpx;line-height: 33rpx; background: #0655b6;border-radius: 4rpx;text-align: center; color: #fff;">在办</view>
- </view>
- <view style="text-align: left; width: 180rpx;">{{item.acceptedDepartment}}</view>
- <view style="text-align: left; width: 180rpx; overflow:hidden;text-overflow:ellipsis;white-space:nowrap">{{item.handlingName}}</view>
- <view style="text-align: left; width: 120rpx;">{{filter.formateDate(item.acceptDate)}}</view>
- <view style="text-align: left; width: 120rpx;margin-left: 10rpx;">{{filter.formateDate(item.commitmentDate)}}</view>
- </view>
|