|
- <!--pages/bank/bank.wxml-->
- <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
- <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};height: 19.0909px;" mode="widthFix" bindtap="back"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">开户行</text>
- </view>
-
- <view class="search_box" id="top_view" style="margin-top:{{isIPX?'100px':'75px'}};">
- <van-search
- value="{{ value }}"
- shape="round"
- background="transparent"
- placeholder="请输入开户行名称"
- clearable
- bind:change="goSearch"
- />
- <view class="add_btn" bindtap="goAdd"><text>新增</text></view>
- </view>
- <scroll-view scroll-y refresher-threshold="0" id="top_view2" style="height:{{scrollHeight}}px" bindscrolltolower="paging" lower-threshold="100">
- <van-swipe-cell right-width="{{ 65 }}" class="workflow" wx:for="{{depositList}}" wx:key="index" wx:for-item="item">
- <view class="li" bindtap="goUpdate" data-id="{{item.id}}">
- <view class="tit_box">
- <image src="/image/apply/{{iOf.indexOf(item.bankTypeText,'中国银行') > -1 ? 'ICBC':iOf.indexOf(item.bankTypeText,'农商行') > -1 ? 'RCB':iOf.indexOf(item.bankTypeText,'农业银行') > -1 ? 'ABC':iOf.indexOf(item.bankTypeText,'建设银行') > -1 ? 'CCB':'QT'}}.png" style="width: 25px;height: 25px;"></image>
- <text class="tit">{{item.bankDeposit}}</text>
- </view>
- <view class="detail_box">
- <view style="width: 35%;">{{item.bankTypeText}}</view>
- <view style="width: 30%;display: flex;justify-content: center;">
- <image src="/image/icon/dress.png" style="width: 9px;height: 12px;margin-right: 5px;"></image>
- <text>{{item.sheng+item.shi}}</text>
- </view>
- <view><text>{{item.payeePaymentLines}}</text></view>
- </view>
- </view>
- <view slot="right" class="deleteBox">
- <view style="flex: 1;height: 100%;display: flex;align-items: center;flex-direction: column;justify-content: center;background-color: rgb(255,0,0,0.2);" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete">
- <view>
- <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;display: block;" ></image>
- </view>
- <view>
- <text style="color:red">删除</text>
- </view>
- </view>
- </view>
- </van-swipe-cell>
- </scroll-view>
- <modal hidden="{{!showPopupDel}}" title="是否删除?" confirm-text="是" cancel-text="否" bindcancel="cancelTemDel" bindconfirm="confirmTemDel">
- </modal>
- <wxs module="iOf">
- var indexOf = function(name,value){
- return name.indexOf(value);
- }
- module.exports.indexOf = indexOf;
- </wxs>
|