|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!--pages/bank/bank.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="search_box" 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>
-
- <van-swipe-cell right-width="{{ 65 }}" class="workflow">
- <view class="li" bindtap="goUpdate">
- <view class="tit_box">
- <image src="/image/apply/ICBC.png" style="width: 25px;height: 25px;"></image>
- <text class="tit">威海农商行临港区支行</text>
- </view>
- <view class="detail_box">
- <view style="width: 35%;">农商行(山东省)</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>山东威海</text>
- </view>
- <view><text>联行号:2570******</text></view>
- </view>
- </view>
- <view slot="right" class="deleteBox">
- <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-swipe-cell right-width="{{ 65 }}" class="workflow">
- <view class="li" bindtap="goUpdate">
- <view class="tit_box">
- <image src="/image/apply/ICBC.png" style="width: 25px;height: 25px;"></image>
- <text class="tit">威海农商行临港区支行</text>
- </view>
- <view class="detail_box">
- <view style="width: 35%;">中国建设银行</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>山东威海</text>
- </view>
- <view><text>联行号:2570******</text></view>
- </view>
- </view>
- <view slot="right" class="deleteBox">
- <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>
|