|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!--pages/Bookkeeping/Bookkeeping.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'}};">记账申请</text>
- </view>
- <view class="work_plan" style="margin-top:{{isIPX?'88px':'65px'}};">
- <view class="menu_item {{showGroup?'active':''}} " bindtap="switchTab" data-gid='{{true}}'>收入事项<text class="remind">{{flowListSRNum}}</text></view>
- <view class="menu_item {{!showGroup?'active':''}} " bindtap="switchTab" data-gid='{{false}}'>支出事项<text class="remind">{{flowListZCNum}}</text></view>
-
- <view class="downView" bindtap="openPopup">
- <text>{{checkedStatusText}}</text>
- <image src="/image/icon/triangle.png"></image>
- </view>
- <van-popup show="{{showProjectFundType}}" round position="bottom" bind:close="closeBox" data-name="showProjectFundType">
- <van-picker
- columns="{{capitalExpenditureTypeOptions}}"
- show-toolbar
- value-key="dictLabel"
- bind:cancel="closeBox"
- bind:confirm="onConfirmPick"
- data-name="showProjectFundType"
- data-value="checkedStatusText"
- />
- </van-popup>
- </view>
- <van-checkbox-group wx:if="{{showGroup}}" value="{{ result }}" bind:change="onChange">
- <view class="li" wx:for="{{flowListSR}}" wx:key="index">
- <van-checkbox name="{{item.id}}" shape="square" checked-color="#2C8E68" style="width: 100%;">
- <view style="width: 40%;">
- <text class="tit">{{item.accountSummary}}</text>
- <view class="fksr">
- <image src="/image/icon/inCome.png" style="width: 16px;height: 14px;margin-right: 5px;"></image>
- {{item.incomeTypeText}}
- </view>
- </view>
- <view>
- <text class="fj_name">附件{{item.enclosureCount}}</text>
- <text class="time">{{item.incomeDate}}</text>
- </view>
- <view>
- <view class="wtj">
- <image src="/image/icon/stop.png" style="width: 12px;height: 12px;margin-right: 5px;"></image>
- {{item.checkedStatusText}}
- </view>
- <text class="money">¥{{item.jieAmount}}</text>
- </view>
- </van-checkbox>
- </view>
- </van-checkbox-group>
-
-
- <van-checkbox-group wx:if="{{!showGroup}}" value="{{ result2 }}" bind:change="onChange2">
- <view class="li" wx:for="{{flowListZC}}" wx:key="index">
- <van-checkbox name="1" shape="square" checked-color="#2C8E68" style="width: 100%;">
- <view style="width: 40%;">
- <text class="tit">{{item.accountSummary}}</text>
- <view class="fksr">
- <image src="/image/icon/inCome.png" style="width: 16px;height: 14px;margin-right: 5px;"></image>
- 现金支出
- </view>
- </view>
- <view>
- <text class="fj_name">附件9</text>
- <text class="time">{{item.incomeDate}}</text>
- </view>
- <view>
- <view class="wtj">
- <image src="/image/icon/stop.png" style="width: 12px;height: 12px;margin-right: 5px;"></image>
- 未提交
- </view>
- <text class="money">¥{{item.jieAmount}}</text>
- </view>
- </van-checkbox>
- </view>
- </van-checkbox-group>
-
- <van-empty wx:if="{{flowListSRNum == 0 && showGroup}}" description="暂无收入事项数据" />
-
- <van-empty wx:if="{{flowListZCNum == 0 && !showGroup}}" description="暂无支出事项数据" />
- <view class="ipXbtn"></view>
- <view class="ipXbtn"></view>
- <view class="bottom">
- <view class="btn2" bindtap="goSubmit">提交记账</view>
- </view>
|