|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <!--pages/handle/liist.wxml-->
- <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
- <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">{{pageTitle}}</text>
- </view>
- <view class="work_plan" wx-if="{{active==1||active==2}}" style="margin-top:{{isIPX?'100px':'75px'}};">
- <view>
- <view class="menu_item {{active==1?'active':''}}" bindtap="switchTab" data-gid='{{1}}'>待办<text class="remind">{{todoNum}}</text></view>
- <view class="menu_item {{active==2?'active':''}}" bindtap="switchTab" data-gid='{{2}}'>已办<text class="remind">{{doneNum}}</text></view>
- </view>
- <!-- <view style="border:1px solid #ddd;background: #fff;border-radius: 30rpx;line-height: 60rpx;padding: 0 25rpx;">
- <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
- <view class="picker">
- {{array[index]}}
- <image src="../../image/icon/triangle.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image>
- </view>
- </picker>
- </view> -->
- </view>
- <view class="work_plan" wx-if="{{active==3||active==4}}" style="margin-top:{{isIPX?'100px':'75px'}};">
- <view>
- <view class="menu_item {{active==3?'active':''}}" bindtap="switchTab" data-gid='{{3}}'>发起<text class="remind">{{yfqNum}}</text></view>
- <view class="menu_item {{active==4?'active':''}}" bindtap="switchTab" data-gid='{{4}}'>制单<text class="remind">{{yzdNum}}</text></view>
- </view>
- <!-- <view style="border:1px solid #ddd;background: #fff;border-radius: 30rpx;line-height: 60rpx;padding: 0 25rpx;">
- <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
- <view class="picker">
- {{array[index]}}
- <image src="../../image/icon/triangle.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image>
- </view>
- </picker>
- </view> -->
- </view>
- <scroll-view scroll-y="true" wx-if="{{active==1}}" style="height: {{wrokScrollHeight}}px;">
- <view class="workflow" wx:if="{{active=='1'}}" wx:for-item="item" wx:for="{{todoList}}" wx:key="id">
- <!--1-->
- <view class="workflow_list">
- <view class="process_intro">
- <view class="name">{{item.formData.payer}}</view>
- <!-- <view class="state">待审</view> -->
- <view class="time">{{item.formData.applyDate}}</view>
- </view>
- <view class="process_pay">
- <view class="describe">
- <image class="amount_icon" src="../../image/index/process_icon.png" mode="aspectFit"></image>
- <text class="textLimit">{{item.formData.remark}}</text>
- </view>
- <view class="amount"><text class="unit">¥</text>{{item.formData.expenditureAmount}}</view>
- </view>
- </view>
- </view>
-
- </scroll-view>
- <scroll-view scroll-y="true" wx-if="{{active==2}}" style="height: {{wrokScrollHeight}}px;">
- <view class="workflow" wx:if="{{active=='2'}}" wx:for-item="item" wx:for="{{doneList}}" wx:key="id">
- <!--1-->
- <view class="workflow_list">
- <view class="process_intro">
- <view class="name">{{item.formData.payer}}</view>
- <!-- <view class="state">已审</view> -->
- <view class="time">{{item.formData.applyDate}}</view>
- </view>
- <view class="process_pay">
- <view class="describe">
- <image class="amount_icon" src="../../image/index/process_icon.png" mode="aspectFit"></image>
- <text class="textLimit">{{item.formData.remark}}</text>
- </view>
- <view class="amount"><text class="unit">¥</text>{{item.formData.expenditureAmount}}</view>
- </view>
- </view>
- </view>
- </scroll-view>
- <scroll-view scroll-y="true" wx-if="{{active==3}}" style="height: {{wrokScrollHeight}}px;">
- <view class="workflow" wx:if="{{active=='3'}}" wx:for-item="item" wx:for="{{yfqList}}" wx:key="id">
- <!--1-->
- <view class="workflow_list">
- <view class="process_intro">
- <view class="name">{{item.payer}}</view>
- <!-- <view class="state">已发起</view> -->
- <view class="time">{{item.applyDate}}</view>
- </view>
- <view class="process_pay">
- <view class="describe">
- <image class="amount_icon" src="../../image/index/process_icon.png" mode="aspectFit"></image>
- <text class="textLimit">{{item.remark}}</text>
- </view>
- <view class="amount"><text class="unit">¥</text>{{item.expenditureAmount}}</view>
- </view>
- </view>
- </view>
-
- </scroll-view>
- <scroll-view scroll-y="true" wx-if="{{active==4}}" style="height: {{wrokScrollHeight}}px;">
- <view class="workflow" wx:if="{{active=='4'}}" wx:for-item="item" wx:for="{{yzdList}}" wx:key="id">
- <!--1-->
- <view class="workflow_list">
- <view class="process_intro">
- <view class="name">{{item.payer}}</view>
- <!-- <view class="state">已制单</view> -->
- <view class="time">{{item.applyDate}}</view>
- </view>
- <view class="process_pay">
- <view class="describe">
- <image class="amount_icon" src="../../image/index/process_icon.png" mode="aspectFit"></image>
- <text class="textLimit">{{item.remark}}</text>
- </view>
- <view class="amount"><text class="unit">¥</text>{{item.expenditureAmount}}</view>
- </view>
- </view>
- </view>
- </scroll-view>
|