fix
Helius
2021-02-20 45fb4b11ad51bb38306765b11a6747402e382cee
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
<template>
    <!-- 领用记录 -->
    <view>
        <navigator class="list-item" v-for="item in 3">
            <view class="list-header">
                <text>操作员: 张三</text>
                <text class="gray">2020-12-12 19:06:08</text>
            </view>
            <view class="list-content">
                <view class="flex justify-between">
                    <text>肽妍氨基酸平衡基础洁面乳</text>
                    <text>x6</text>
                </view>
                <view class="flex justify-between mt-10">
                    <text>水光面膜</text>
                    <text class="ml-15">x6</text>
                </view>
                <text class="gray mt-10">备注: 阿萨德哈猴神大叔</text>
            </view>
        </navigator>
    </view>
</template>
 
<script>
</script>
 
<style>
    page{
        background: #F6F6F8;
    }
    .tab{
        background: #FFFFFF;
        border-bottom: 1px solid #EDEAF4;
    }
    .list-item{
        background: #FFFFFF;
        border-radius: 4px;
        margin: 10px;
        color: #3a3f3f;
        padding: 0 10px;
    }
    .list-header{
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid #EDEAF4;
    }
    .list-content{
        display: flex;
        flex-direction: column;
        padding: 12px 0;
        font-size: 14px;
    }
    .icon{
        width: 16px;
        height: 16px;
        vertical-align: sub;
        margin-right: 10px;
    }
    .list-footer{
        display: flex;
        justify-content: flex-end;
        padding: 10px 0;
        border-top: 1px solid #EDEAF4;
    }
</style>