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.
 
 
 
 
 

55 lines
1.1 KiB

<style lang="scss" scoped>
.container{
padding:30rpx;
background:#F6F6F6;
min-height:100%;
.card{
margin:0;
.item{
border-top:2rpx solid rgba(216,216,216,0.4);
height:80rpx;
display:flex;
align-items: center;
justify-content: space-between;
color:#777;
font-size:28rpx;
text{
&:first-child{
flex-shrink: 0;
}
}
}
}
}
</style>
<template>
<view class="container">
<view class="card">
<view class="title">基本信息</view>
<view class="item" v-for="i in 1">
<text>仓库名称</text> <text>东方红一号仓库</text>
</view>
<view class="item">
<text>仓库位置</text> <text>东方红一号基地进门右边冷库</text>
</view>
<view class="item">
<text>仓库容量</text> <text>12</text>
</view>
<view class="item">
<text>仓库类型</text> <text>冷库</text>
</view>
<view class="item">
<text>仓库管理员</text> <text>张小红</text>
</view>
<view class="item">
<text>库管员电话</text> <text>12323443434</text>
</view>
</view>
</view>
</template>
<script>
export default{
}
</script>