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
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
<template>
    <!-- 确认领取 -->
    <view>
        <navigator class="list-item">
            <view class="list-header">
                <view class="flex align-center">
                    <image class="icon" src="../../static/images/order-icon1.png"></image>
                    <text>六女士</text>
                </view>
                <text class="gray">2020-12-12 19:06:08</text>
            </view>
            <view class="list-content">
                <image class="icon" src="../../static/images/order-icon2.png"></image>
                <view class="flex-1">
                    <view class="flex align-center justify-between">
                        <view>
                            <text>肽妍氨基酸平衡基础洁面乳</text>
                            <text class="ml-5">x6</text>
                        </view>
                        <view>
                            <text class="font-10 gray mr-5">已领 1</text>
                            <text class="iconfont iconjian blue-btn-circle mr-5"></text>
                            <text>1</text>
                            <text class="iconfont iconjia blue-btn-circle ml-5"></text>
                        </view>
                    </view>
                    <view class="flex justify-between mt-10">
                        <view>
                            <text>水光面膜</text>
                            <text class="ml-15">x6</text>
                        </view>
                        <view>
                            <text class="font-10 gray mr-5">已领 2</text>
                            <text class="iconfont iconjian blue-btn-circle mr-5"></text>
                            <text>1</text>
                            <text class="iconfont iconjia blue-btn-circle ml-5"></text>
                        </view>
                    </view>
                </view>
            </view>
            <view class="flex align-center">
                <text class="iconfont iconbeizhu icon gray"></text>
                <text class="font-12">备注</text>
            </view>
            <textarea placeholder="请输入" placeholder-class="placeholder" class="textarea"/>
        </navigator>
    </view>
</template>
 
<script>
</script>
 
<style>
    .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: 13px;
        border-bottom: 1px solid #EDEAF4;
    }
    .list-content{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px 0;
        font-size: 12px;
    }
    .icon{
        width: 16px;
        height: 16px;
        vertical-align: sub;
        margin-right: 10px;
    }
    .list-content .icon{
        margin-top: 4px;
    }
    .textarea{
        width: 100%;
        height: auto;
        word-wrap : break-word;
        border: 1px solid #EDEAF4;
        border-radius: 4px;
        margin-top: 10px;
        padding: 15px;
        height: 110px;
        box-sizing: border-box;
    }
</style>