开始做充值和发票

This commit is contained in:
2024-03-20 11:10:52 +08:00
parent e5c9a96353
commit 7648ace524
59 changed files with 1091 additions and 199 deletions

View File

@@ -2,16 +2,16 @@
<view class="content">
<van-field
value="{{ value }}"
placeholder="请输入用户名"
placeholder="{{'请选择' + label}}"
border="{{ false }}"
label="用户名"
label="{{label}}"
custom-style="height:100rpx"
bind:change="onChange"
bind:input="onInput"
required="{{required}}"
/>
<view class="modal" wx:if="{{visible}}">
<view class="options" >
<view wx:for="{{list}}" class="option" bind:tap="onChoose" data-data="{{item}}">{{item}}</view>
<view class="options">
<view wx:for="{{list}}" class="option" bind:tap="onChoose" data-data="{{item}}" wx:key="id">{{item.name}}</view>
</view>
<view class="other" bind:tap="close"></view>
</view>