li-guang
2020-12-21 164acabd9e14052cb730826f427ef9d353fd0529
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
<template>
    <!-- 商品(项目)-->
    <view class="content">
        <view class="content-title">
            <text>配料表</text>
        </view>
        <view class="content-row flex justify-between">
            <text>小气泡1号溶液</text>
            <text>23ml</text>
        </view>
        <view class="content-row flex justify-between">
            <text>皮肤肌底修护液 (10%)</text>
            <text>23ml</text>
        </view>
        <view class="content-row flex justify-between">
            <text>皮肤肌底修护液 (10%)</text>
            <text>23ml</text>
        </view>
    </view>
</template>
 
<script>
</script>
 
<style>
    .content{
        text-align: center;
        background: #FFFFFF;
        padding: 0 10px;
        border-radius: 4px;
        box-shadow:0 -6px 6px rgba(237,234,244,0.5);
    }
    .content-title{
        padding: 12px 0 0;
        font-size: 15px;
    }
    .content-row{
        border-bottom: 1px solid #EDEAF4;
        padding: 12px 0;
        font-size: 14px;
    }
    .content-row:nth-last-child(1){
        border: 0;
    }
</style>