2024-06-04 10:05:43 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="container">
|
2024-06-12 16:53:07 +08:00
|
|
|
<u-status-bar></u-status-bar>
|
|
|
|
|
<u-navbar
|
|
|
|
|
title="工情灾情"
|
|
|
|
|
:autoBack="true"
|
|
|
|
|
:titleStyle="{
|
|
|
|
|
fontSize:'18px'
|
|
|
|
|
}"
|
|
|
|
|
:height='44'
|
|
|
|
|
:safeAreaInsetTop=true
|
|
|
|
|
leftIconSize='20'
|
|
|
|
|
leftIconColor='rgb(153, 153, 153)'
|
|
|
|
|
>
|
|
|
|
|
</u-navbar>
|
2024-06-04 10:05:43 +08:00
|
|
|
<view class="info">
|
|
|
|
|
<div class="ul_list" @click="todetail(1)">
|
|
|
|
|
<div class="left">工情信息</div>
|
|
|
|
|
<div class="left">></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ul_list" @click="todetail(2)">
|
|
|
|
|
<div class="left">灾情信息</div>
|
|
|
|
|
<div class="left">></div>
|
|
|
|
|
</div>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
todetail (val) {
|
|
|
|
|
console.log('val', val)
|
|
|
|
|
if (val == 1) {
|
|
|
|
|
uni.navigateTo({
|
2024-06-12 16:53:07 +08:00
|
|
|
url: '/pages/gqzq/gqxx/gqxx'
|
2024-06-04 10:05:43 +08:00
|
|
|
})
|
|
|
|
|
}
|
2024-06-07 16:31:33 +08:00
|
|
|
if (val == 2) {
|
2024-06-04 10:05:43 +08:00
|
|
|
uni.navigateTo({
|
2024-06-12 16:53:07 +08:00
|
|
|
url: '/pages/gqzq/zqxx/zqxx'
|
2024-06-04 10:05:43 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.container {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background-color: #f3f5f8;
|
|
|
|
|
}
|
|
|
|
|
.nav_bar {
|
|
|
|
|
// display: flex;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
// 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;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-bottom: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
.nav_bar_tit {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.info {
|
2024-06-12 16:53:07 +08:00
|
|
|
padding: 20px;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-top: 44px;
|
2024-06-04 10:05:43 +08:00
|
|
|
margin-bottom: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
.ul_list {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 48px;
|
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
|
}
|
|
|
|
|
</style>
|