Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <!--pages/apply/index.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="top" style="margin-top:{{isIPX?'100px':'75px'}};">
- <image src="../../image/apply/dress_icon.png" mode="widthFix"></image>
- <view class="top-tit">付款单位</view>
- <view class="top-title">{{bookName}}</view>
- </view>
-
- <view class="main">
- <van-tabs sticky color="#000">
- <van-tab title="银行账户">
- <view class="bank_box" wx:for="{{accountList}}" wx:key="index">
- <text class="zt">{{item.bankUseType == 1 ?'基本户':'一般户'}}</text>
- <image src="../../image/apply/bgt.png" style="width: 100%;position: absolute;top:0;right:0;z-index: 9;height: 100%;"></image>
- <view class="bank_content {{item.bankType == 1 ? 'ICBC':item.bankType == 2||item.bankType == 5 ? 'RCB':item.bankType == 3 ? 'ABC':item.bankType == 4 ? 'CCB':''}}">
- <view class="bankName">
- <image src="../../image/apply/{{item.bankType == 1 ? 'ICBC':item.bankType == 2||item.bankType == 5 ? 'RCB':item.bankType == 3 ? 'ABC':item.bankType == 4 ? 'CCB':''}}.png" style="width: 25px" mode="widthFix"></image>
- <text>{{item.bankType == 1 ? '中国银行':item.bankType == 2||item.bankType == 5 ? '农商行(山东省)':item.bankType == 3 ? '农业银行':item.bankType == 4 ? '建设银行':''}}</text>
- </view>
-
- <view style="margin-top: 2vh;">{{item.bankAccountNumber}}<text>卡号</text></view>
- <view>可用余额</view>
- <view style="font-weight: bold;font-size: 22px;margin-top: 2vh;">
- {{item.balance}}
- <image src="/image/apply/update.png" data-id="{{item.id}}" data-index="{{index}}" bindtap="updateMoney" style="width: 20px;height: 20px;vertical-align: middle;position: absolute;right: 2vh;z-index: 10;"></image>
- </view>
- </view>
- </view>
- <van-empty wx:if="{{accountList.length == 0}}" description="暂无银行账户" />
- </van-tab>
-
- <van-tab title="公务卡">
-
- <view class="bank_box">
- <view class="bank_content gwk">
- <image src="../../image/apply/gwk_icon.png" style="width: 28%;" mode="widthFix"></image>
- <view style="margin-bottom: 2vh;">6217 0021 9000 7972 186<text>卡号</text></view>
- <view>可用余额</view>
- <view style="font-weight: bold;font-size: 22px;margin-top: 2vh;">10,288.83</view>
- </view>
- <view class="holder">持有人:王强</view>
- </view>
-
- <!-- <van-empty wx:if="{{accountList.length == 0}}" description="暂无银行账户" /> -->
- </van-tab>
- </van-tabs>
- </view>
-
- <view class="bottom">
- <view class="btn1" bindtap="openBox">支付模板</view>
- <view class="btn2" bindtap="swichPaymentApply">下一步</view>
- </view>
- <view class="ipXbtn"></view>
- <van-action-sheet show="{{show}}" title="支付模板" bind:close="closeBox">
- <van-swipe-cell right-width="{{ 130 }}" wx:for="{{approvalItemsOptions}}" wx:key="index">
- <van-cell-group>
- <van-cell label="{{item.approvalItems}}" bindtap="goTemplate" data-id="{{item.id}}" >
- <view slot="title">
- <view class="van-cell-text">{{item.templateName}}<van-tag plain type="danger" color="#FC9A55" style="margin-left:10px;" wx:if="{{index == 0}}"><image src="/image/apply/icon_mr.png" style="width: 12px;height: 12px;margin-right: 2px;"></image>默认</van-tag></view>
- </view>
- <van-icon wx:if="{{index == 0}}" slot="icon" name="https://636c-cloud1-8gya17a31667774d-1310628902.tcb.qcloud.la/icon_mrmb.png?sign=5e5df640777f6a7993c45e1a559dd998&t=1648619865" class="custom-icon" size="40" style="margin-right: 10px;" />
- <van-icon wx:else slot="icon" name="https://636c-cloud1-8gya17a31667774d-1310628902.tcb.qcloud.la/icon_mb.png?sign=2a8bbe2cb4d4e0f28a99fddbe042d26c&t=1648620032" class="custom-icon" size="40" style="margin-right: 10px;" />
- </van-cell>
- </van-cell-group>
- <view slot="right" class="deleteBox">
-
- <view style="flex: 1;height: 100%;display: flex;align-items: center;border-right: 1px solid #eee;">
- <image src="../../image/apply/button_mr.png" style="width: 25px;height: 25px;margin: 0 auto;" data-id="{{item.id}}" data-index="{{index}}" bindtap="getMr"></image>
- </view>
-
- <view style="flex: 1;height: 100%;display: flex;align-items: center;">
- <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete"></image>
- </view>
-
- </view>
- </van-swipe-cell>
- <van-empty wx:if="{{approvalItemsOptions.length == 0}}" description="暂无支付模板" />
- </van-action-sheet>
|