83 lines
4.2 KiB
Plaintext
83 lines
4.2 KiB
Plaintext
<view class="page-container">
|
|
<!-- 轮播图 -->
|
|
<swiper indicator-dots style="height: 120rpx;" autoplay indicator-active-color="#fff">
|
|
<swiper-item>
|
|
<image src="{{imgAssets}}/banner_1.png" style="width: 100vw;height: 120rpx;"></image>
|
|
</swiper-item>
|
|
<swiper-item>
|
|
<image src="{{imgAssets}}/banner_2.png" style="width: 100vw;height: 120rpx;"></image>
|
|
</swiper-item>
|
|
</swiper>
|
|
<!-- 付款信息 -->
|
|
<view class="container-box">
|
|
<view class="box-title">付款方信息</view>
|
|
<view class="item">
|
|
<view class="title star">公司名称</view>
|
|
<view class="content">
|
|
<input class="input-box" placeholder-style="font-size:28rpx" placeholder="请输入公司名称" value="{{companyName}}" bindinput="inputCompanyName" />
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title star">开户银行</view>
|
|
<view class="content"><input value="{{companyBank}}" bindinput="inputCompanyBank" class="input-box" placeholder="请输入开户银行" /></view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title star">银行账号</view>
|
|
<view class="content"><input class="input-box" placeholder-style="font-size:28rpx" placeholder="请输入银行账号" value="{{companyBankNum}}" bindinput="inputCompanyNum" /></view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title star">打款时间</view>
|
|
<view class="content">
|
|
<picker mode="multiSelector" value="{{dateTime}}" bindchange="changeDateTime" bindcolumnchange="changeDateTimeColumn" range="{{dateTimeArray}}">
|
|
<view class="time-picker-box">
|
|
<view class="time-picker">
|
|
{{dateTimeArray[0][dateTime[0]]}}-{{dateTimeArray[1][dateTime[1]]}}-{{dateTimeArray[2][dateTime[2]]}} {{dateTimeArray[3][dateTime[3]]}}:{{dateTimeArray[4][dateTime[4]]}}:{{dateTimeArray[5][dateTime[5]]}}
|
|
</view>
|
|
<view class="icon-arrow-solid"></view>
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title star">打款凭证</view>
|
|
<view class="content">
|
|
<mp-uploader max-count="1" delete="true" bindfail="uploadError" bindsuccess="uploadSuccess" select="{{selectFile}}" upload="{{uploadFile}}" bind:delete="deleteImage" files="{{files}}" title=""></mp-uploader>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="container-box">
|
|
<view class="box-title">收款方信息</view>
|
|
<view class="item mt-10">
|
|
<text class="title" decode>公 司 名 称</text>
|
|
<view class="content">{{incomeEnterprise.bankAccountName}}</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">开 户 银 行</view>
|
|
<view class="content">{{incomeEnterprise.bankName}}</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">银 行 账 号</view>
|
|
<view class="content">{{incomeEnterprise.bankNumber}}</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">银行联行号</view>
|
|
<view class="content">{{incomeEnterprise.bankUnionpayNumber}}</view>
|
|
</view>
|
|
<view class="item">
|
|
<view class="title">打 款 备 注</view>
|
|
<view class="content">{{incomeEnterprise.bankRemark}}</view>
|
|
</view>
|
|
<view class="item">
|
|
<text class="title" style="font-weight: 600;" decode>说      明</text>
|
|
<view class="content" style="color: red;">请打款时必须按照以上备注填写</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom-btn-box">
|
|
<view class="money">金额:
|
|
<text class="price">{{payMoney}}元</text>
|
|
<text style="font-size:12px;" wx:if="{{packageId}}">({{packageName}})</text>
|
|
</view>
|
|
<view class="green-bottom-btn" bind:tap="completePay">完成充值</view>
|
|
</view>
|
|
<mp-toptips msg="{{errorHint}}" type="error" show="{{showError}}"></mp-toptips> |