147 lines
4.2 KiB
Vue
147 lines
4.2 KiB
Vue
<template>
|
|
<view class="rain-detail-box">
|
|
<view class="nav-bar">
|
|
<u-icon name="arrow-left" color="#000" size="28" @click="backTo"></u-icon>
|
|
<view class="title">
|
|
{{stnm}}
|
|
</view>
|
|
</view>
|
|
<view class="tab-bar">
|
|
<uni-swiper-dot :info="Array(2).fill(0)" :current="current" field="content" :dotsStyles="dotsStyles">
|
|
<swiper class="swiper-box" style="height: 30px;" @change="change">
|
|
<swiper-item >
|
|
<view style="display: flex;">
|
|
<view class="jcsj" @click="activeOne = 0" :class="{'active':activeOne == 0}">
|
|
监测数据
|
|
</view>
|
|
<view class="tjsj" @click="activeOne = 1" :class="{'active':activeOne == 1}" style="margin: 0 25px;">
|
|
统计数据
|
|
</view>
|
|
<view class="tjsj" @click="activeOne = 2" :class="{'active':activeOne == 2}" style="margin: 0 25px 0 0;">
|
|
责任体系
|
|
</view>
|
|
<view class="tjsj" @click="activeOne = 3" :class="{'active':activeOne == 3}" >
|
|
图像监测
|
|
</view>
|
|
</view>
|
|
</swiper-item>
|
|
<swiper-item >
|
|
<view style="display: flex;">
|
|
<view class="spjk" @click="activeOne = 4" :class="{'active':activeOne == 4}">
|
|
视频监控
|
|
</view>
|
|
<view class="zbyq" @click="activeOne = 5" :class="{'active':activeOne == 5}" style="margin-left: 25px;">
|
|
周边雨情
|
|
</view>
|
|
</view>
|
|
</swiper-item>
|
|
</swiper>
|
|
</uni-swiper-dot>
|
|
|
|
</view>
|
|
<view class="rain-detail-content">
|
|
<Jcsj :stcd="stcd" :source="source" :afsltdz="afsltdz" :flLowLimLev="flLowLimLev" :desFloodLev="desFloodLev" :calFloodLev="calFloodLev" v-if="activeOne == 0"/>
|
|
<Tjsj :stcd="stcd" :source="source" v-else-if="activeOne == 1"/>
|
|
<Zrtx :stcd="stcd" :source="source" :resCode="resCode" v-else-if="activeOne == 2"/>
|
|
<Txjc :resCode="resCode" :source="source" v-else-if="activeOne == 3"/>
|
|
<Spjk :stcd="stcd" :source="source" v-else-if="activeOne == 4"/>
|
|
<Zbyq :stcd="stcd" v-else-if="activeOne == 5"/>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import Jcsj from "./jcsj/jcsj.vue"
|
|
import Tjsj from "./tjsj/tjsj.vue"
|
|
import Zbyq from "./zbyq/zbyq.vue"
|
|
import Spjk from "./spjk/spjk.vue"
|
|
import Zrtx from "./zrtx/zrtx.vue"
|
|
import Txjc from "./txjc/txjc.vue"
|
|
export default {
|
|
data(){
|
|
return {
|
|
activeOne:0,
|
|
stcd:'',
|
|
stnm:'',
|
|
source:'',
|
|
wrz:'',
|
|
grz:'',
|
|
calFloodLev:'',
|
|
desFloodLev:'',
|
|
flLowLimLev:'',
|
|
afsltdz:'',
|
|
resCode:'',
|
|
current:0,
|
|
dotsStyles:{
|
|
bottom:0,
|
|
selectedBackgroundColor:"#d9001b"
|
|
}
|
|
}
|
|
},
|
|
components:{
|
|
Jcsj,
|
|
Tjsj,
|
|
Zbyq,
|
|
Spjk,
|
|
Zrtx,
|
|
Txjc
|
|
},
|
|
methods:{
|
|
backTo(){
|
|
uni.navigateBack({delta:1})
|
|
},
|
|
change(e) {
|
|
console.log(e.detail.current);
|
|
this.current = e.detail.current;
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
this.stcd = option.stcd;
|
|
this.stnm = option.stnm;
|
|
this.source = option.source;
|
|
this.grz = option.grz;
|
|
this.wrz = option.wrz;
|
|
this.afsltdz = option.afsltdz;
|
|
this.calFloodLev = option.calFloodLev;
|
|
this.flLowLimLev = option.flLowLimLev;
|
|
this.desFloodLev = option.desFloodLev;
|
|
this.resCode = option.resCode;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.rain-detail-box{
|
|
position: relative;
|
|
.nav-bar{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
box-shadow: 0 5px 10px -8px #dfdfdf inset;
|
|
}
|
|
.title{
|
|
flex:1;
|
|
text-align: center;
|
|
margin-right: 18px;
|
|
}
|
|
.tab-bar{
|
|
// width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 5px 30px;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
// overflow-x: auto;
|
|
}
|
|
.active{
|
|
color: #39a6ff;
|
|
}
|
|
.rain-detail-content{
|
|
padding: 10px;
|
|
}
|
|
}
|
|
</style> |