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.
62 lines
1.2 KiB
62 lines
1.2 KiB
<style lang="scss" scoped>
|
|
uni-page-body{
|
|
min-height:100%;
|
|
background:#F6F6F6;
|
|
}
|
|
.content{
|
|
padding:15px;
|
|
.card{
|
|
margin:0;
|
|
.title{
|
|
color:#333;
|
|
font-size:14px;
|
|
margin-bottom:10px;
|
|
}
|
|
.item{
|
|
border-top:1px solid rgba(216,216,216,0.4);
|
|
height:40px;
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
color:#777;
|
|
font-size:14px;
|
|
text{
|
|
&:first-child{
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<view class="content">
|
|
<view class="card">
|
|
<view class="title">基本信息</view>
|
|
|
|
<view class="item">
|
|
<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>
|
|
|