queenwuli
2020-12-27 cc499362b6eba119792e113796e4da029a70fc6d
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
<template>
    <!-- 家居产品 -->
    <view class="list">
        <view class="list-item">
            <text>商品编码</text>
            <text>{{productInfo.goodsNo}}</text>
        </view>
        <view class="list-item">
            <text>商品分类</text>
            <text>{{productInfo.goodsType}}</text>
        </view>
        <view class="list-item">
            <text>规格</text>
            <text>{{productInfo.measure}}</text>
        </view>
        <view class="list-item">
            <text>每人限购次数</text>
            <text>{{productInfo.limitBuyCnt || '-'}}</text>
        </view>
        <view class="list-item">
            <text>最大销售数量</text>
            <text>{{productInfo.maxSaleCnt || '-'}}</text>
        </view>
    </view>
</template>
 
<script>
    export default{
        props:{
            productInfo: {
                default: {}
            }
        }
    }
</script>
 
<style>
    .list{
        background: #FFFFFF;
        padding: 0 10px;
        font-size: 14px;
    }
    .list-item{
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #EDEAF4;
        padding: 12px 0;
    }
    .list-item:nth-last-child(1){
        border: 0;
    }
</style>