42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
<!--pages/recharge/index.wxml-->
|
|
<navigator title="充值" />
|
|
<view class="wrapper">
|
|
<!-- 账单周期 T13561356146548465815313 创新风华 -->
|
|
<view style="display: flex;align-items: center;font-size: 24rpx;">
|
|
<view style="margin-right: 20rpx;">
|
|
<view> 电费账单 </view>
|
|
<view> 2024年02月 </view>
|
|
</view>
|
|
<view style="flex: 1;display: flex;">
|
|
<view style="margin-right: 20rpx;">
|
|
<view>商户编号</view>
|
|
<view> T00062102047096834 </view> </view>
|
|
<view>
|
|
<view>
|
|
商户名称
|
|
</view>
|
|
<view>
|
|
创新风华</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="chooseMeter">
|
|
充值表号
|
|
<view class="selectMeter">
|
|
<picker bindchange="onChangeCode" value="{{index}}" range="{{codes}}">
|
|
<view class="picker">
|
|
<view class="input border" wx:if="{{code}}">{{code}}</view>
|
|
<view class="input border" style="color: rgb(116, 109, 109)" wx:else>请选择</view>
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="moneyBoxs">
|
|
<view wx:for="{{defaultMoneyArray}}" class="moneyBox border radius12" style="background-color: {{moneyIndex === index ? primaryColor : ''}};" bind:tap="chooseMoney" data-money="{{item}}" data-index="{{index}}"> {{item}} </view>
|
|
<view class="moneyBox border radius12" bind:tap="custom"> 自定义 </view>
|
|
</view>
|
|
<view class="customInput border radius12" wx:if="{{customFlag}}" > <input type="number" focus placeholder="请输入要充值的金额" bindinput="onChangeCustomMoney"/> </view>
|
|
<view class="operate">
|
|
<button type="primary" bind:tap="recharge" disabled="{{!code || !money}}"> 充值 </button>
|
|
</view> -->
|
|
</view> |