#
whycq
2022-02-11 efbbbd78c979cf860dde6cc006991f3c4b93c443
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">
            <text class="title">产品代号</text>
            <input type="text" placeholder="扫码 / 输入" name="input" autocomplete="off">
        </view>
        <view class="cu-form-group margin-top">
            <text class="title">产品名称</text>
            <input type="text" name="input" autocomplete="off">
        </view>
        <view class="cu-form-group margin-top">
            <text class="title">单位</text>
            <input type="text" name="input" autocomplete="off">
        </view>
        <view class="cu-form-group margin-top">
            <text class="title">数量</text>
            <uni-number-box @change="changeValue" />
        </view>
        <button class="cu-btn bg-yellow pda-btn2">提取</button>
    </view>
</template>
 
<script>
</script>
 
<style>
    .pda-btn2{
        margin-left:auto;
        margin-right: auto;
        margin-top: 150rpx;
        width: 200rpx;
        height: 80rpx;
    }
</style>