<template>
|
<!-- 出入库记录 -->
|
<view>
|
<view class="header font-14 flex align-center justify-center">
|
<view class="header-time mr-20">
|
<text class="blue">2019-08-25</text>
|
</view>
|
<text class="iconfont iconjian"></text>
|
<view class="header-time ml-20">
|
<text class="blue">2020-08-25</text>
|
</view>
|
</view>
|
<view class="content">
|
<view class="content-row mt-10">
|
<view class="content-row-time">
|
<text class="font-14">2020-12-11 11:15</text>
|
</view>
|
<view class="content-row-record">
|
<view class="font-16 flex align-center justify-between">
|
<text>采购入库</text>
|
<text>入库数量: 2</text>
|
</view>
|
<view class="mt-10">
|
<text class="font-14 gray">订单编号: N1231242412412414</text>
|
</view>
|
</view>
|
</view>
|
<view class="content-row mt-10">
|
<view class="content-row-time">
|
<text class="font-14">2020-12-11 11:15</text>
|
</view>
|
<view class="content-row-record">
|
<view class="font-16 flex align-center justify-between">
|
<text>销售出库</text>
|
<text>出库数量: 2</text>
|
</view>
|
<view class="mt-10">
|
<text class="font-14 gray">订单编号: N1231242412412414</text>
|
</view>
|
</view>
|
</view>
|
</view>
|
</view>
|
</template>
|
|
<script>
|
</script>
|
|
<style>
|
page{
|
background: #F6F6F8;
|
}
|
.header{
|
background: #FFFFFF;
|
padding: 10px 0;
|
box-shadow:0 6px 6px rgba(237,234,244,0.5);
|
border-bottom-left-radius: 4px;
|
border-bottom-right-radius: 4px;
|
}
|
.header-time{
|
border: 1px solid #EDEAF4;
|
border-radius: 4px;
|
padding: 5px 10px;
|
}
|
.content{
|
padding: 0 10px;
|
}
|
.content-row{
|
background: #FFFFFF;
|
border: 1px solid #EDEAF4;
|
border-radius: 4px;
|
padding: 0 10px;
|
box-shadow:0 6px 6px rgba(237,234,244,0.5);
|
}
|
.content-row-time{
|
padding: 10px 0;
|
border-bottom: 1px solid #EDEAF4;
|
}
|
.content-row-record{
|
padding: 10px 0;
|
}
|
</style>
|