[抖火申请支付]

This commit is contained in:
2023-05-15 13:33:00 +08:00
commit c503bff7d2
294 changed files with 25144 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<template>
<view>
<picker
v-if="selectList.length > 0"
:range="selectList"
:value="selectValue"
@change="bindPickerChange"
>
<view class="uni-input">{{selectList[selectValue]}}</view>
</picker>
</view>
</template>
<script>
export default {
name: 'mouldSelect',
props: {
selectList: {
type: Array,
default: () => {
return []
}
},
selectValue: {
type: String,
default: ''
},
},
data(){
return {}
},
onShow() {},
methods: {
bindPickerChange(e){
this.$emit('bankPicker', e.detail.value)
}
}
}
</script>
<style>
</style>