开始做充值,,调整了首页

This commit is contained in:
2024-04-02 17:32:28 +08:00
parent 3284bea475
commit db6d253898
44 changed files with 676 additions and 141 deletions

View File

@@ -11,7 +11,8 @@ Component({
},
show: Boolean,
columns: Array,
type: String
type: String,
title: String,
},
/**

View File

@@ -3,9 +3,17 @@
show="{{ show }}"
position="bottom"
bind:close="onClose"
>
<view style="width: 100vw;">
<van-picker show-toolbar
title="标题" columns="{{ columns }}" bind:change="onChange" value-key="name" bind:confirm="confirm" bind:cancel="cancel" />
<van-picker
show-toolbar
title="{{title}}"
columns="{{ columns }}"
bind:change="onChange"
value-key="name"
bind:confirm="confirm"
bind:cancel="cancel"
/>
</view>
</van-popup>