#
whycq
2022-02-12 f0ffe3a07738ff34824e2a2eec0bf831d707470b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
    <view>
        <view class="cu-form-group margin-top">
            <view class="title">出库口</view>
            <picker @change="PickerChange" :value="index" :range="picker">
                <view class="picker">
                    {{index>-1?picker[index]:'请选择'}}
                </view>
            </picker>
            <button></button>
        </view>
        <view>
            <button class="cu-btn bg-yellow pda-btn">确认</button>
            <button class="cu-btn bg-grey pda-btn">重置</button>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                picker: ['+补充', '汪汪汪', '哼唧哼唧'],
            }
        },
        methods: {
            
        }
    }
</script>
 
<style>
    
</style>