|
@@ -1,15 +1,7 @@ |
|
|
<template> |
|
|
<template> |
|
|
<view class="warningInfo"> |
|
|
<view class="warningInfo"> |
|
|
<view class="searchBox"> |
|
|
<view class="searchBox"> |
|
|
<view class="searchLine"> |
|
|
|
|
|
<!-- <view class="leftSearchBox"> |
|
|
|
|
|
<view class="searchLabel"> |
|
|
|
|
|
筛选条件: |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="searchValue"> |
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
</view> --> |
|
|
|
|
|
|
|
|
<!-- <view class="searchLine"> |
|
|
<view class="searchShow" @click="openSearch"> |
|
|
<view class="searchShow" @click="openSearch"> |
|
|
<image v-show="isShowSearch==false" style="width:20px;height:20px;" |
|
|
<image v-show="isShowSearch==false" style="width:20px;height:20px;" |
|
|
src="@/static/image/earlyWarning/screen.png" mode=""> |
|
|
src="@/static/image/earlyWarning/screen.png" mode=""> |
|
@@ -25,6 +17,24 @@ |
|
|
<image v-show="isShowSearch" src="@/static/image/earlyWarning/arrow2.png" mode=""></image> |
|
|
<image v-show="isShowSearch" src="@/static/image/earlyWarning/arrow2.png" mode=""></image> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
</view> --> |
|
|
|
|
|
<view class="searchLine" @click="openSearch"> |
|
|
|
|
|
<!-- <view class="searchShow"> --> |
|
|
|
|
|
<view class="searchLabels"> |
|
|
|
|
|
<image v-show="isShowSearch==false" src="@/static/image/earlyWarning/screen.png" mode=""> |
|
|
|
|
|
</image> |
|
|
|
|
|
<image v-show="isShowSearch" src="@/static/image/earlyWarning/screenActive.png" mode=""> |
|
|
|
|
|
</image> |
|
|
|
|
|
<text class="labels">筛选</text> |
|
|
|
|
|
<view class="values">周界入侵,未处理,2024-8-24 18:06:12 - 2024-8-24 18:06:12</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="arrow"> |
|
|
|
|
|
<image v-show="isShowSearch==false" src="@/static/image/earlyWarning/arrow1.png" mode=""> |
|
|
|
|
|
</image> |
|
|
|
|
|
<image v-show="isShowSearch" src="@/static/image/earlyWarning/arrow2.png" mode=""></image> |
|
|
|
|
|
</view> |
|
|
|
|
|
<!-- </view> --> |
|
|
</view> |
|
|
</view> |
|
|
<view @click="isShowSearch=false" class="searchDialog" v-if="isShowSearch"> |
|
|
<view @click="isShowSearch=false" class="searchDialog" v-if="isShowSearch"> |
|
|
<view class="content" @click.stop="isSelect"> |
|
|
<view class="content" @click.stop="isSelect"> |
|
@@ -352,28 +362,34 @@ |
|
|
.searchLine { |
|
|
.searchLine { |
|
|
height: 88rpx; |
|
|
height: 88rpx; |
|
|
display: flex; |
|
|
display: flex; |
|
|
justify-content: space-between; |
|
|
|
|
|
align-items: center; |
|
|
align-items: center; |
|
|
|
|
|
justify-content: space-between; |
|
|
padding: 0 15px; |
|
|
padding: 0 15px; |
|
|
box-sizing: border-box; |
|
|
box-sizing: border-box; |
|
|
background: #fff; |
|
|
background: #fff; |
|
|
|
|
|
|
|
|
.searchShow { |
|
|
|
|
|
|
|
|
font-size: 28rpx; |
|
|
|
|
|
|
|
|
|
|
|
.searchLabels { |
|
|
display: flex; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
align-items: center; |
|
|
font-size: 28rpx; |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
width: calc(100% - 34rpx); |
|
|
|
|
|
|
|
|
|
|
|
image { |
|
|
|
|
|
width: 40rpx; |
|
|
|
|
|
height: 40rpx; |
|
|
|
|
|
flex-shrink: 1; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
.labels { |
|
|
.labels { |
|
|
width: 90rpx; |
|
|
|
|
|
|
|
|
width: 70rpx; |
|
|
display: block; |
|
|
display: block; |
|
|
color: #333333; |
|
|
color: #333333; |
|
|
margin-left: 10rpx; |
|
|
margin-left: 10rpx; |
|
|
flex-shrink: 1; |
|
|
flex-shrink: 1; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.values { |
|
|
.values { |
|
|
// width: calc(100% - 30rpx - 34rpx); |
|
|
|
|
|
|
|
|
width: calc(100% - 40rpx - 50rpx); |
|
|
color: #2388FF; |
|
|
color: #2388FF; |
|
|
font-weight: 700; |
|
|
font-weight: 700; |
|
|
margin-left: 18rpx; |
|
|
margin-left: 18rpx; |
|
@@ -384,28 +400,30 @@ |
|
|
-webkit-box-orient: vertical; |
|
|
-webkit-box-orient: vertical; |
|
|
-webkit-line-clamp: 1; |
|
|
-webkit-line-clamp: 1; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.arrow { |
|
|
|
|
|
text-align: right; |
|
|
|
|
|
|
|
|
|
|
|
image { |
|
|
|
|
|
width: 34rpx; |
|
|
|
|
|
height: 34rpx; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.arrow { |
|
|
|
|
|
// text-align: right; |
|
|
|
|
|
// flex-shrink: 1; |
|
|
|
|
|
|
|
|
|
|
|
image { |
|
|
|
|
|
width: 34rpx; |
|
|
|
|
|
height: 34rpx; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.leftSearchBox { |
|
|
.leftSearchBox { |
|
|
display: flex; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
align-items: center; |
|
|
width: calc(100% - 40px); |
|
|
width: calc(100% - 40px); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.searchLabel { |
|
|
.searchLabel { |
|
|
flex-shrink: 1; |
|
|
flex-shrink: 1; |
|
|
color: #333333; |
|
|
color: #333333; |
|
|
width: 80px; |
|
|
width: 80px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.searchValue { |
|
|
.searchValue { |
|
|
width: calc(100% - 60px); |
|
|
width: calc(100% - 60px); |
|
|
margin-left: 10px; |
|
|
margin-left: 10px; |
|
@@ -413,7 +431,6 @@ |
|
|
overflow: hidden; |
|
|
overflow: hidden; |
|
|
word-wrap: break-word; |
|
|
word-wrap: break-word; |
|
|
white-space: pre-wrap; |
|
|
white-space: pre-wrap; |
|
|
// font-size: 14px; |
|
|
|
|
|
display: -webkit-box; |
|
|
display: -webkit-box; |
|
|
-webkit-box-orient: vertical; |
|
|
-webkit-box-orient: vertical; |
|
|
-webkit-line-clamp: 1; |
|
|
-webkit-line-clamp: 1; |
|
@@ -429,8 +446,6 @@ |
|
|
height: calc(100vh - 375rpx - 60rpx); |
|
|
height: calc(100vh - 375rpx - 60rpx); |
|
|
font-size: 26rpx; |
|
|
font-size: 26rpx; |
|
|
background: rgba(0, 0, 0, 0.2); |
|
|
background: rgba(0, 0, 0, 0.2); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content { |
|
|
.content { |
|
|
background: #FFFFFF; |
|
|
background: #FFFFFF; |
|
|
padding: 15px; |
|
|
padding: 15px; |
|
|