You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!--pages/apply/paymentTemplate/add/upLoad/upLoad.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_box" style="margin-top:{{isIPX?'100px':'75px'}};">
-
- <text style="color: #878787;">下载导入模板,根据模板提示完善内容</text>
-
- <view class="upload_button" bindtap="downLoadExl">
- <image src="/image/apply/icon_downLoad.png" style="width: 15px;height: 15px;margin-right: 5px;"></image>
- <text>下载模板</text>
- </view>
-
- <text style="color: #878787;">上传完善好的内容,支持上传文件为:xls、xlsx</text>
-
- </view>
-
-
- <view class="main-box" wx:if="{{showBox}}">
- <van-cell title="收款账户类型" center border="{{false}}">
- <view style="float: right;">
- <van-radio-group
- value="{{ bankAccountType }}"
- bind:change="onChange"
- direction="horizontal"
- >
- <van-radio name="1" checked-color="#2C8E68">公户</van-radio>
- <van-radio name="2" checked-color="#2C8E68">私户</van-radio>
- </van-radio-group>
- </view>
- </van-cell>
- </view>
-
- <view class="main-box" wx:if="{{!showBox && bankType != 5 }}">
- <van-cell title="是否同行" center border="{{false}}">
- <view style="float: right;">
- <van-radio-group
- value="{{ isPeers }}"
- bind:change="onChangePee"
- direction="horizontal"
- >
- <van-radio name="Y" checked-color="#2C8E68">是</van-radio>
- <van-radio name="N" checked-color="#2C8E68">否</van-radio>
- </van-radio-group>
- </view>
- </van-cell>
- </view>
-
- <view class="upload_box" wx:if="{{showUp}}">
- <image src="/image/apply/icon_exl.png" style="width: 40px;height: 40px;"></image>
- <view class="upload_take_button" bindtap="uploadFile">选择文件</view>
- <text style="color: #878787;">支持上传文件为:xls、xlsx</text>
- </view>
-
- <view class="upload_box" wx:if="{{!showUp}}" style="padding-bottom: 0;">
- <image src="/image/apply/icon_yes.png" style="width: 40px;height: 40px;"></image>
- <view class="exlList">
- <view style="position: relative;">
- <image src="/image/apply/icon_exl.png" style="width: 40px;height: 40px;"></image>
- <van-icon name="/image/apply/img_delete.png" size="15px" bindtap="deleteimg" style="position: absolute;top: 0;left: 25px;" />
- <text>{{exlName}}</text>
- </view>
- <text style="color:{{upText == '导入失败' ? '#E90000' : '#2C8E68'}} ;flex-shrink: 0;">{{upText}}</text>
- </view>
- </view>
-
-
-
- <scroll-view scroll-y class="bottom_text" style="height: {{scrollHeight}}px;">
- <text>提示:</text>
- <text>1、仅允许导入“xls”或“xlsx”格式文件,且表头模板不能修改!</text>
- <text>2、账户类型:公户、私户。</text>
- <text>3、当系统中存在表格中的收款方时,则根据收款账户自动为导入的收款方的其他信息赋值。</text>
- <text>4、导入前请在"开户银行"模块提前维护,系统根据联行号自动为收款方赋值所属银行和开户行信息,联行号分情况必填,填写规则如下:</text>
- <text>一、中国银行</text>
- <text>1、导入收款方的账户类型需要与页面选择的相同。</text>
- <text>2、联行号为必填项。</text>
- <text>二、农商行(山东省)</text>
- <text>1、导入收款方的所属银行需要根据页面选择的是否同行相匹配。</text>
- <text>2、跨行转账暂时只支持单笔转账。</text>
- <text>3、单笔跨行、批量跨行转账时联行号为必填项。</text>
- <text>三、农业银行</text>
- <text>1、导入收款方的所属银行需要根据页面选择的是否同行相匹配。</text>
- <text>2、联行号为必填项。</text>
- <text>四、建设银行</text>
- <text>1、导入收款方的所属银行需要根据页面选择的是否同行相匹配。</text>
- <text>2、单笔跨行、批量跨行转账时联行号为必填项。</text>
- <text>五、农商行(重庆)</text>
- <text>1、导入收款方最多可以有500条。</text>
- <text>2、联行号为必填项。</text>
- </scroll-view>
- <view class="bottom">
- <!-- <view class="btn1" data-type="3" bindtap="goSubmit">提交复核</view> -->
- <view class="btn1" bindtap="back">关闭</view>
- <view class="btn2" data-type="0" bindtap="goSubmit" hover-class="btnView">确认</view>
- </view>
|