#
whycq
2022-04-07 d6fc16d0377b09f960c1f5a0d44efde05d98c910
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
<template>
    <scroll-view scroll-y>
        <view>
            <view class="container">
                <view class="text-box">
                    <view><text>商品编码</text></view>
                    <view><text>1111</text></view>
                </view>
                <view class="text-box">
                    <view><text>商品名称</text></view>
                    <view>显示器</view>
                </view>
                <view class="text-box">
                    <view><text>规格</text></view>
                    <view>24英寸</view>
                </view>
                <view class="text-box">
                    <view><text>批号</text></view>
                    <view>YC-897998776</view>
                </view>
                <view class="text-box">
                    <view><text>数量</text></view>
                    <view>269</view>
                </view>
                <view class="foot flex justify-center">
                    <label for="">
                        <button class="cu-btn bg-blue">提取</button>
                    </label>
                </view>
            </view>
        </view>
    </scroll-view>
</template>
 
<script>
</script>
 
<style>
    .container {
        width: 100%;
        height: 100%;
        background-color: #ffffff;
    }
    .text-box {
        height: 100rpx;
        line-height: 100rpx;
        margin-top: 20rpx;
        margin-left: 10%;
        width: 80%;
        font-size: 36rpx;
        font-weight: 700;
        color: #434343;
        border-bottom: 1rpx solid #e8e8e8;
    }
    .text-box:last-child {
        border-bottom: 1px solid #000000;
    }
    .text-box view {
        width: 30%;
        float: left;
        display: inline-block;
    }
    .text-box view:last-child {
        display: inline-block;
        margin-left: 10%;
        width: 60%;
        font-size: 30rpx;
        font-weight: 400;
        color: #747474;
    }
    
    .foot {
        width: 100%;
        height: 100rpx;
        line-height: 100rpx;
        background-color: rgba(255,255,255,1);
        position: fixed;
        bottom: 0%;
        border-top: 1px solid #d8d8d8;
        z-index: 1;
    }
</style>