electricity_bill_calc_wx/pages/publicTransfer/index.wxml

26 lines
1.1 KiB
Plaintext

<!--pages/publicTransfer/index.wxml-->
<navigator title="对公转账" canBack="{{true}}" />
<van-cell-group>
<van-field label="用户名称" value="{{ tenementName }}" border="{{ false }}" readonly />
<van-field label="电表编号" value="{{ meter.code }}" border="{{ false }}" readonly />
<van-field label="电表地址" value="{{ meter.address }}" border="{{ false }}" readonly />
<van-field label="付款方式" value="{{ '对公支付' }}" border="{{ false }}" readonly />
<van-field label="付款金额" value="{{ money }}" border="{{ false }}" readonly />
<van-field label="充值凭证" border="{{ false }}" use-input-slot type="textarea">
<van-button slot="input" size="small" type="info" bind:tap="onUpload">
点击上传
</van-button>
</van-field>
</van-cell-group>
<view style="padding: 20rpx;">
<van-uploader
file-list="{{ fileList }}"
show-upload="{{false}}"
bind:delete="handleDelete"
preview-size="220rpx"
/>
<van-button bind:tap="handleSubmit" type="info" block style="margin-top: 20rpx;"> 提交 </van-button>
</view>
<van-dialog id="van-dialog" />