#
whycq
2023-02-13 1bea37073f305929215bf2c3f28e2263acb6fc20
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<template>
    <view class="main">
        <view class="item">
            <text>托盘码</text>
            <input type="text" placeholder="扫码 / 输入">
        </view>
        <view class="item">
            <text>商品码</text>
            <input type="text" placeholder="扫码 / 输入">
            <view class="item-right">
                <text style="text-align: right;">提取+</text>
                <uni-icons type="right" color="#c1c1c1"></uni-icons>
            </view>
        </view>
    </view>
 
    <view class="list" v-for="(item,i) in dataList" :key="i">
        <view class="list-left">
            <view class="desc">No:</view>
            <view>{{i + 1}}</view>
            <view class="desc">编码:</view>
            <view>{{item.matnr}}</view>
            <view class="desc">品名:</view>
            <view>{{item.maktx}}</view>
            <view class="desc">规格:</view>
            <view>{{item.specs}}</view>
            <view class="desc">批号:</view>
            <view>{{item.batch}}</view>
            <view class="desc">数量:</view>
            <view>{{item.anfme}}</view>
        </view>
        <view class="list-right">
            <uni-icons type="compose" color="#c1c1c1" size="24"></uni-icons>
            <uni-icons type="trash" color="#c1c1c1" size="24"></uni-icons>
        </view>
    </view>
    <view  style="height: 120rpx;">
        
    </view>
    
    <!-- 底部操作按钮 -->
    <view class="buttom">
        <button size="mini">重置</button>
        <button size="mini" type="primary">组托</button>
    </view>
 
</template>
 
<script>
    export default {
        data() {
            return {
                dataList: [{
                    matnr: "whycq19950520222222-23232",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "1"
                }, {
                    matnr: "whycq19950520",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "12"
                },{
                    matnr: "whycq19950520",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "12"
                },{
                    matnr: "whycq19950520",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "12"
                },{
                    matnr: "whycq19950520",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "12"
                },{
                    matnr: "whycq19950520",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "12"
                },{
                    matnr: "whycq19950520",
                    maktx: "wusuowei",
                    specs: "个",
                    batch: "批号",
                    anfme: "12"
                }
                ]
            }
        },
        onLoad() {
 
        },
        methods: {}
    }
</script>
 
<style lang="less">
    @import "../../static/css/app.less";
</style>