You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<style lang="scss">
|
|
|
|
.container{
|
|
|
|
min-height: 100%;
|
|
|
|
background:#f6f6f6;
|
|
|
|
padding:30rpx 0;
|
|
|
|
|
|
|
|
.card{
|
|
|
|
margin-top:0;
|
|
|
|
|
|
|
|
.item{
|
|
|
|
display:flex;
|
|
|
|
color:#777;
|
|
|
|
justify-content: space-between;
|
|
|
|
height:80rpx;
|
|
|
|
align-items: center;
|
|
|
|
border-top:2rpx solid rgba(216, 216, 216, 0.5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<template>
|
|
|
|
<view class="container">
|
|
|
|
<view class="card">
|
|
|
|
<view class="title">基本信息</view>
|
|
|
|
|
|
|
|
<view class="item">
|
|
|
|
<text>批次号</text> <text>A23366683</text>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<text>出库类型</text> <text>销售出库</text>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<text>农资名称</text> <text>中量元素水溶肥</text>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<text>规格</text> <text>100kg/袋</text>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<text>物品数量</text> <text>2袋(200kg)</text>
|
|
|
|
</view>
|
|
|
|
<view class="item">
|
|
|
|
<text>供销商</text> <text>云南云天化股份有限公司</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data(){
|
|
|
|
return{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|