<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> 
 |