li-guang
2020-12-25 c94eed22ac10480428d5b711bfd90ff746f42d2b
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>
    <!-- 出入库记录 -->
    <view>
        <view class="header font-14 flex align-center justify-center">
            <view class="header-time mr-20">
                <text class="blue">2019-08-25</text>
            </view>
            <text class="iconfont iconjian"></text>
            <view class="header-time ml-20">
                <text class="blue">2020-08-25</text>
            </view>
        </view>
        <view class="content">
            <view class="content-row mt-10">
                <view class="content-row-time">
                    <text class="font-14">2020-12-11 11:15</text>
                </view>
                <view class="content-row-record">
                    <view class="font-16 flex align-center justify-between">
                        <text>采购入库</text>
                        <text>入库数量: 2</text>
                    </view>
                    <view class="mt-10">
                        <text class="font-14 gray">订单编号: N1231242412412414</text>
                    </view>
                </view>
            </view>
            <view class="content-row mt-10">
                <view class="content-row-time">
                    <text class="font-14">2020-12-11 11:15</text>
                </view>
                <view class="content-row-record">
                    <view class="font-16 flex align-center justify-between">
                        <text>销售出库</text>
                        <text>出库数量: 2</text>
                    </view>
                    <view class="mt-10">
                        <text class="font-14 gray">订单编号: N1231242412412414</text>
                    </view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
</script>
 
<style>
    page{
        background: #F6F6F8;
    }
    .header{
        background: #FFFFFF;
        padding: 10px 0;
        box-shadow:0 6px 6px rgba(237,234,244,0.5);
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
    .header-time{
        border: 1px solid #EDEAF4;
        border-radius: 4px;
        padding: 5px 10px;
    }
    .content{
        padding: 0 10px;
    }
    .content-row{
        background: #FFFFFF;
        border: 1px solid #EDEAF4;
        border-radius: 4px;
        padding: 0 10px;
        box-shadow:0 6px 6px rgba(237,234,244,0.5);
    }
    .content-row-time{
        padding: 10px 0;
        border-bottom: 1px solid #EDEAF4;
    }
    .content-row-record{
        padding: 10px 0;
    }
</style>