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.
238 lines
4.6 KiB
238 lines
4.6 KiB
<template> |
|
<view class="box_caa"> |
|
<view> |
|
<view>场站名称:</view> |
|
<view class="czmc"> |
|
<input placeholder="请输入场站名称"/> |
|
</view> |
|
</view> |
|
<view> |
|
<view>区县:</view> |
|
<view class="quxxz"> |
|
<view>九龙坡</view> |
|
<image src="../../static/xiajian.png"></image> |
|
</view> |
|
</view> |
|
<view style="align-items: flex-start;"> |
|
<view>数据对比:</view> |
|
<view class="duoxuan"> |
|
<view> |
|
<image src="../../static/minicon/weixuan.png"></image> |
|
<view>未选</view> |
|
</view> |
|
<view> |
|
<image src="../../static/minicon/yixuan.png"></image> |
|
<view>已选</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view> |
|
<view>月度:</view> |
|
<view class="quxxz"> |
|
<view>2022年6月</view> |
|
<image src="../../static/xiajian.png"></image> |
|
</view> |
|
</view> |
|
<view class="chabutton"> |
|
查询 |
|
</view> |
|
</view> |
|
<!-- <view class="chaxun">查询</view> --> |
|
<scroll-view class="zhibo" scroll-y="true"> |
|
<view class="maxbox"> |
|
<view v-for="item in [1,2,3,4,5]" @click="godetals"> |
|
<image src="../../static/img01.png"></image> |
|
<view class="titl">城南室友加油站</view> |
|
<view class="titl1">lng站1号加油站</view> |
|
<view class="min_box"> |
|
<view> |
|
<view>所在区县:</view> |
|
<view>巴南区</view> |
|
</view> |
|
<view> |
|
<view>场站状态:</view> |
|
<view>LNG</view> |
|
</view> |
|
<view> |
|
<view>摄像头状态:</view> |
|
<view class="stazt"> |
|
<view></view> |
|
<view>正常</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</scroll-view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
setup(){ |
|
function godetals(){ |
|
uni.navigateTo({ |
|
url:'/pages/lovedetail/lovedetail?id=1' |
|
}) |
|
} |
|
return { |
|
godetals |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.zhibo{ |
|
width: 100%; |
|
height: 56vh; |
|
margin-top: 30upx; |
|
.maxbox{ |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
flex-wrap: wrap; |
|
padding: 0 20upx; |
|
box-sizing: border-box; |
|
>view{ |
|
width: 340upx; |
|
display: flex; |
|
flex-direction: column; |
|
margin-bottom: 20upx; |
|
>image{ |
|
width: 340upx; |
|
height: 183upx; |
|
} |
|
.titl{ |
|
color: #3d7aed; |
|
font-size: 28upx; |
|
margin-top: 20upx; |
|
padding: 0 20upx; |
|
box-sizing: border-box; |
|
} |
|
.titl1{ |
|
color: #3d7aed; |
|
font-size: 28upx; |
|
margin-top: 10upx; |
|
padding: 0 20upx; |
|
box-sizing: border-box; |
|
} |
|
.min_box{ |
|
display: flex; |
|
flex-direction: column; |
|
margin-top: 10upx; |
|
border-top: 1upx solid #ececec; |
|
border-bottom: 1upx solid #ececec; |
|
padding: 10upx 20upx; |
|
box-sizing: border-box; |
|
>view{ |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
font-size: 24upx; |
|
padding: 10upx 0; |
|
.stazt{ |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-size: 24upx; |
|
>view:nth-of-type(1){ |
|
width: 17upx; |
|
height: 17upx; |
|
border-radius: 50%; |
|
background-color: #2fb271; |
|
margin-right: 15upx; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
.chaxun{ |
|
width: 650upx; |
|
height: 90upx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: #3d7aed; |
|
margin: auto; |
|
margin-top: 50upx; |
|
border-radius: 10upx; |
|
color: #ffffff; |
|
font-size: 20upx; |
|
} |
|
.box_caa{ |
|
width: 710upx; |
|
margin: auto; |
|
padding: 30upx 20upx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
margin-top: 20upx; |
|
border-radius: 10upx; |
|
>view{ |
|
width: 100%; |
|
display: flex; |
|
align-items: center; |
|
margin-bottom: 20upx; |
|
>view{ |
|
width: 150upx; |
|
} |
|
.czmc{ |
|
flex: 1; |
|
background-color: #f2f2f2; |
|
padding: 20upx; |
|
box-sizing:border-box; |
|
>input{ |
|
flex: 1; |
|
} |
|
} |
|
.quxxz{ |
|
// flex: 3; |
|
min-width: 260upx; |
|
background-color: #f2f2f2; |
|
padding: 20upx; |
|
box-sizing:border-box; |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
>view{ |
|
// margin-right: 100upx; |
|
} |
|
>image{ |
|
width: 23upx; |
|
height: 15upx; |
|
} |
|
} |
|
.duoxuan{ |
|
display: flex; |
|
align-items: center; |
|
flex-wrap: wrap; |
|
flex: 1; |
|
>view{ |
|
display: flex; |
|
align-items: center; |
|
font-size: 28upx; |
|
margin-right: 30upx; |
|
>image{ |
|
width: 40upx; |
|
height: 40upx; |
|
margin-right: 15upx; |
|
} |
|
} |
|
} |
|
} |
|
.chabutton{ |
|
width: 630upx; |
|
padding: 30upx 0; |
|
margin:10upx auto; |
|
margin-top: 30upx; |
|
background-color: #3d7aed; |
|
color: #ffffff; |
|
font-size: 28upx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border-radius: 10upx; |
|
} |
|
} |
|
</style>
|
|
|