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