#
whycq
2022-08-01 c7eff2a64e305953726bcb173d03e281bf7d3e03
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
    <view>
        <!-- 商品码输入框 -->
        <view class="square-2">
            <view class="square-title">
                <view class="title-sign"><view class="sign"></view></view>
                <view class="title-text"><text>商品码</text></view>
            </view>
            <view class="square-content">
                <view class="content-input">
                    <input type="text" v-model="yyds" placeholder="扫码 / 输入" @input="find" :focus="focus">
                    <uni-icons type="closeempty" size="20" color="#dadada"></uni-icons>
                </view>
            </view>
        </view>
        <!-- 库位码输入框 -->
        <view class="square-2">
            <view class="square-title">
                <view class="title-sign"><view class="sign"></view></view>
                <view class="title-text"><text>库位码</text></view>
            </view>
            <view class="square-content">
                <view class="content-input">
                    <input type="text" v-model="yyds" placeholder="扫码 / 输入" @input="find" :focus="focus">
                    <uni-icons type="closeempty" size="20" color="#dadada"></uni-icons>
                </view>
            </view>
        </view>
        <!-- 底部按钮 -->
        <view class="footer flex justify-around">
            <!-- <label class="label-btn" style="width: 170rpx;">
                <checkbox :checked="check" @click="allChecked()">{{checkText}}</checkbox>
            </label>
            <label class="label-btn" style="width: 100rpx;">
                <text  @click="reChecked()">反选</text>
            </label> -->
            
            <label class="label-btn" style="width: 150rpx;">
                <button class="cu-btn" @click="resst()">重置</button>
            </label>
            <label class="label-btn">
                <button class="cu-btn bg-blue " @click="comb()">下架</button>
            </label>
        </view>
    </view>
    
</template>
 
<script>
     export default {
         data() {
             return {
                yyds:'',
                focus:true
            }
        }
     }
</script>
 
<style>
</style>