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.
107 lines
2.4 KiB
107 lines
2.4 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;
|
|
}
|
|
}
|
|
&.inline{
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
height:auto;
|
|
padding-bottom:10px;
|
|
text:first-child{
|
|
margin:10px 0;
|
|
}
|
|
}
|
|
.imgs{
|
|
margin:0 -10px -10px 0;
|
|
width:100%;
|
|
display:flex;
|
|
flex-wrap: wrap;
|
|
image{
|
|
height:80px;
|
|
margin:0 10px 10px 0;
|
|
width:calc((100% - 20px)/3);
|
|
border-radius: 4px;
|
|
&:nth-child(3n){
|
|
margin-right:0;
|
|
}
|
|
}
|
|
}
|
|
.detail{
|
|
background:#F7F7F7;
|
|
border-radius: 12px;
|
|
padding:15px;
|
|
color:#999;
|
|
font-size:14px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<view class="content">
|
|
<view class="card">
|
|
<view class="title">基本信息</view>
|
|
|
|
<view class="item">
|
|
<text>基地名称</text> <text>A122323</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>地块编号</text> <text>东方红壹号基地</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>地块面积</text> <text>45亩</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>实际面积</text> <text>44亩</text>
|
|
</view>
|
|
<view class="item inline">
|
|
<text>地块图片</text>
|
|
<view class="imgs">
|
|
<image src="https://tse2-mm.cn.bing.net/th/id/OIP-C.0lguFbeN1p3XPMcmThvShwHaEO?w=281&h=180&c=7&r=0&o=5&pid=1.7"/>
|
|
<image src="https://tse2-mm.cn.bing.net/th/id/OIP-C.0lguFbeN1p3XPMcmThvShwHaEO?w=281&h=180&c=7&r=0&o=5&pid=1.7"/>
|
|
<image src="https://tse2-mm.cn.bing.net/th/id/OIP-C.0lguFbeN1p3XPMcmThvShwHaEO?w=281&h=180&c=7&r=0&o=5&pid=1.7"/>
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
<text>使用日期</text> <text>2021-10-15 至 2026-12-23</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>经纬度</text> <text>东经97°31′,北纬21°8′</text>
|
|
</view>
|
|
<view class="item inline">
|
|
<text>详细地址</text>
|
|
<view class="detail">
|
|
这里是地址信息这里是地址信息这里是地址信息这里是地址信息
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
|
|
}
|
|
</script>
|
|
|