xytSk-App/pages/rainDetail/rainDetail.vue

92 lines
2.1 KiB
Vue
Raw Normal View History

2024-06-05 16:16:58 +08:00
<template>
<view class="rain-detail-box">
2024-06-13 16:22:28 +08:00
<u-status-bar></u-status-bar>
2024-06-05 16:16:58 +08:00
<view class="nav-bar">
2024-06-13 16:22:28 +08:00
<u-icon name="arrow-left" color="#000" size="20" @click="backTo" style="margin-left:10px"></u-icon>
2024-06-05 16:16:58 +08:00
<view class="title">
2024-06-11 15:35:46 +08:00
{{stnm}}
2024-06-05 16:16:58 +08:00
</view>
</view>
<view class="tab-bar" >
2024-06-14 17:47:32 +08:00
<view class="jcsj" @click="activeOne = 0" :class="{'active':activeOne == 0}">
2024-06-05 16:16:58 +08:00
监测数据
</view>
2024-06-14 17:47:32 +08:00
<view class="tjsj" @click="activeOne = 1" :class="{'active':activeOne == 1}">
2024-06-05 16:16:58 +08:00
统计数据
</view>
2024-06-14 17:47:32 +08:00
<view class="zbyq" @click="activeOne = 2" :class="{'active':activeOne == 2}">
2024-06-05 16:16:58 +08:00
周边雨情
</view>
</view>
<view class="rain-detail-content">
<Jcsj :stcd="stcd" v-if="activeOne == 0"/>
<Tjsj :stcd="stcd" v-else-if="activeOne == 1"/>
<Zbyq :stcd="stcd" v-else-if="activeOne == 2"/>
</view>
</view>
</template>
<script>
import Jcsj from "./jcsj/jcsj.vue"
import Tjsj from "./tjsj/tjsj.vue"
import Zbyq from "./zbyq/zbyq.vue"
export default {
data(){
return {
activeOne:0,
2024-06-11 15:35:46 +08:00
stcd:'',
stnm:''
2024-06-05 16:16:58 +08:00
}
},
components:{
Jcsj,
Tjsj,
Zbyq
},
methods:{
backTo(){
uni.navigateBack({delta:1})
}
},
onLoad(option) {
2024-06-11 15:35:46 +08:00
this.stcd = option.stcd;
this.stnm = option.stnm;
2024-06-05 16:16:58 +08:00
}
}
</script>
<style lang="scss" scoped>
.rain-detail-box{
2024-06-14 10:19:48 +08:00
height: 100vh;
overflow: hidden;
2024-06-05 16:16:58 +08:00
.nav-bar{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
2024-06-13 16:22:28 +08:00
height: 44px;
// margin-top: 30px;
// padding-top: 20px;
// padding-bottom: 10px;
2024-06-05 16:16:58 +08:00
border-bottom: 1px solid #dfdfdf;
2024-06-13 16:22:28 +08:00
// box-shadow: 0 5px 10px -8px #dfdfdf inset;
2024-06-05 16:16:58 +08:00
}
.title{
flex:1;
text-align: center;
2024-06-13 16:22:28 +08:00
font-size: 18px;
2024-06-05 16:16:58 +08:00
}
.tab-bar{
display: flex;
justify-content: space-between;
padding: 10px 30px;
border-bottom: 1px solid #dfdfdf;
}
.active{
color: #39a6ff;
}
.rain-detail-content{
padding: 10px;
}
}
</style>