2019-12-16 17:14:58 +08:00
|
|
|
|
<template>
|
2020-05-21 16:08:23 +08:00
|
|
|
|
<div class="new-search" v-clickoutside="clickout">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<div class="search-input-all input-position" @click="stop_click">
|
|
|
|
|
|
<!-- 历史记录-->
|
|
|
|
|
|
<div class="search-history">
|
2020-09-10 17:00:32 +08:00
|
|
|
|
<i class="nz-icon nz-icon-time" @click="look_history" id="search-view-history"></i>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<div :class="localStorage_display?'localStorage_list_box none':'localStorage_list_box'">
|
|
|
|
|
|
<div class="list_box_title">
|
2019-12-24 17:31:51 +08:00
|
|
|
|
<span>{{$t('search.recentSearch')}}</span>
|
2020-09-10 17:00:32 +08:00
|
|
|
|
<i class="nz-icon nz-icon-close" @click="localStorage_display=!localStorage_display" id="search-close-history"></i>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="list_box_content" v-if="history_once.length>0">
|
|
|
|
|
|
<ul>
|
2020-01-13 18:48:25 +08:00
|
|
|
|
<li v-for="(val,ind) in history_once" @click="select_history(ind,$event)" :key="ind" :id="'search-history-pick-'+ind">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<span v-for="(item,key) in val" :key="key">
|
|
|
|
|
|
<span class="name">{{item.name}}: </span>
|
|
|
|
|
|
<span class="value">{{item.val+' '}}</span>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="list_box_clear">
|
2020-01-13 18:48:25 +08:00
|
|
|
|
<span v-if="history_once.length>0" @click="clear_history" id="search-clear-history">{{other.clearReSearch}}</span>
|
2019-12-24 17:31:51 +08:00
|
|
|
|
<span v-else class="no_historyList">{{$t('search.noRecentSearch')}}</span>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 搜索框-->
|
|
|
|
|
|
<div class="input-center-box" id="input-center-box">
|
2020-04-09 21:09:18 +08:00
|
|
|
|
<el-scrollbar style="height: 100%;width: 200px; overflow-y: hidden" ref="searchScrollbar">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul class="sreach_fixe_left" id="search-ul">
|
|
|
|
|
|
<li class="selectinfo_box" v-if="select_list.length>0" v-for="(val,ind) in select_list" :key="ind" @click="update_sreach(ind,$event)">
|
|
|
|
|
|
<div class="select_condition">
|
|
|
|
|
|
{{val.name}}
|
|
|
|
|
|
</div>
|
2019-12-17 17:17:30 +08:00
|
|
|
|
<div class="select_content" v-if="val.val && ind!=sreach_num">
|
2020-04-20 21:27:32 +08:00
|
|
|
|
<span>{{val.valString ? val.valString : val.val}}</span>
|
2020-09-10 17:00:32 +08:00
|
|
|
|
<i class="nz-icon nz-icon-close" @click="close_selcet_list(ind,$event)"></i>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div v-else-if="!change_sreach_show && ind==sreach_num && val.id!==7 " class="select_input">
|
2020-11-17 16:41:52 +08:00
|
|
|
|
<input type="text" autocomplete="off" id="sreach_input" v-model="input_sreach" :readonly="val.readonly" @keyup="enter(val, $event)" @click="stop_click">
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'select'">
|
2020-04-17 21:27:20 +08:00
|
|
|
|
<el-scrollbar v-if="selectInfoList[val.label].length > 8" class="el-scrollbar-small" style="height: 240px;">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in selectInfoList[val.label]" :key="key" @click="tr_selectInfo(val.label,item.value,item.label,$event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.label}}</li>
|
|
|
|
|
|
</ul>
|
2020-04-17 21:27:20 +08:00
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in selectInfoList[val.label]" :key="key" @click="tr_selectInfo(val.label,item.value,item.label,$event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.label}}</li>
|
|
|
|
|
|
</ul>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'selectString'">
|
2020-04-17 21:27:20 +08:00
|
|
|
|
<el-scrollbar v-if="selectInfoList[val.label].length > 8" class="el-scrollbar-small" style="height: 240px;">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
2019-12-17 17:17:30 +08:00
|
|
|
|
<li v-for="(item,key) in selectInfoList[val.label]" :key="key" @click="stringSelectInfo(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.label}}</li>
|
|
|
|
|
|
</ul>
|
2020-04-17 21:27:20 +08:00
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in selectInfoList[val.label]" :key="key" @click="stringSelectInfo(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.label}}</li>
|
|
|
|
|
|
</ul>
|
2019-12-17 17:17:30 +08:00
|
|
|
|
</div>
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'dc'">
|
2020-04-17 21:27:20 +08:00
|
|
|
|
<el-scrollbar v-if="dcSelect.length > 8" class="el-scrollbar-small" style="height: 240px;">
|
2019-12-17 17:17:30 +08:00
|
|
|
|
<ul>
|
2020-04-17 21:27:20 +08:00
|
|
|
|
<li v-for="(item,key) in dcSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
2019-12-20 17:18:30 +08:00
|
|
|
|
</ul>
|
2020-04-17 21:27:20 +08:00
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in dcSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
2019-12-20 17:18:30 +08:00
|
|
|
|
</div>
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'asset'">
|
2020-04-17 21:27:20 +08:00
|
|
|
|
<el-scrollbar v-if="assetSelect.length > 8" class="el-scrollbar-small" style="height: 240px;">
|
2019-12-20 17:18:30 +08:00
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in assetSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.host}}</li>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</ul>
|
2020-04-17 21:27:20 +08:00
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in assetSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.host}}</li>
|
|
|
|
|
|
</ul>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
2020-04-20 21:27:32 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'project'">
|
|
|
|
|
|
<el-scrollbar v-if="projectSelect.length > 8" class="el-scrollbar-small" style="height: 240px;">
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in projectSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in projectSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'module'">
|
|
|
|
|
|
<el-scrollbar v-if="moduleSelect.length > 8" class="el-scrollbar-small" style="height: 240px;">
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in moduleSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in moduleSelect" :key="key" @click="selectObject(val, item, $event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<!-- 新增日志模块action下拉选择 -->
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'selectAction'">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in actionSelect" :key="key" @click="tr_selectInfo(val.label,item.id,item.value,$event)">{{item.value}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 新增protocol下拉选择 -->
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'selectType'">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in schemaTypeSelect" :key="key" @click="tr_selectTypeInfo(item)">{{item.value}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 新增protocol二层下拉 -->
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="TypeSelect.length!=0&&val.type == 'selectType'&&secondShow">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in TypeSelect" :key="key" @click="tr_selectProtocolInfo(item)">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 时间计划-->
|
2020-03-23 21:46:19 +08:00
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'select'&&val.id==5">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="item in schlist" @click="selectSul(item.name)">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2020-11-17 16:41:52 +08:00
|
|
|
|
<!--endpoint 状态-->
|
|
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'state'&&val.id==33">
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in selectInfoList['endpointState']" :key="key" @click="tr_selectInfo(val.label,item.value,item.label,$event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.label}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2020-11-21 16:12:02 +08:00
|
|
|
|
<!--alertMessage idc-->
|
|
|
|
|
|
<div class="select_info_list" :style="'top:' + selectDom.top" v-if="val.type == 'idc'&&val.id==27">
|
|
|
|
|
|
<el-scrollbar v-if="dcSelect.length > 8" class="el-scrollbar-small" style="height: 240px;">
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li v-for="(item,key) in dcSelect" :key="key" @click="tr_selectInfo(val.label,item.id,item.name,$event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<ul v-else>
|
|
|
|
|
|
<li v-for="(item,key) in dcSelect" :key="key" @click="tr_selectInfo(val.label,item.id,item.name,$event)" :class="search_select_style_num==key?'search-style-ind':''">{{item.name}}</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="timeFrame"
|
|
|
|
|
|
type="datetimerange"
|
|
|
|
|
|
range-separator="To"
|
|
|
|
|
|
start-placeholder="Start Time"
|
|
|
|
|
|
end-placeholder="End Time"
|
|
|
|
|
|
@change="changeDate"
|
|
|
|
|
|
:class="dataBackG?'':'dataBackG'"
|
|
|
|
|
|
v-if="ind==sreach_num&&val.id==7"
|
|
|
|
|
|
>
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<!-- 最开始的input框-->
|
|
|
|
|
|
<li class="select_input" v-if="change_sreach_show">
|
|
|
|
|
|
<input type="text" @click="read_input" v-model="no_condition" @keyup="enter_one" id="one-input" @keydown="clear_search_list" >
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
2020-03-17 19:43:18 +08:00
|
|
|
|
</el-scrollbar>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
2020-03-17 19:01:09 +08:00
|
|
|
|
<div v-show="clearSearchShow" class="clear-search" @click="clear_input">
|
2020-09-10 17:00:32 +08:00
|
|
|
|
<i class="nz-icon nz-icon-circle-close"></i>
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
2020-12-14 20:25:24 +08:00
|
|
|
|
<div :class="input_list?'input_list none':'input_list'" :style="'top:' + selectDom.top" @click="stop_click" id="input_list">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<ul>
|
2020-11-17 16:41:52 +08:00
|
|
|
|
<li v-for="(val,ind) in searchLabelList" @click="select_name(val.name,ind,val.id,val.type,val.label,val.disabled,val.readonly,$event)" :key="ind" :class="{'search-style-ind':searchStyleNum==ind,'is-disabled':val.disabled}">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<span>{{val.name}}</span>
|
|
|
|
|
|
</li>
|
2019-12-17 17:17:30 +08:00
|
|
|
|
<!--<li v-for="(val,ind) in searchLabelList" v-if="val.name=='Protocol'" @click="select_type(val.name,ind,val.id,val.type,val.label,val.disabled)" :key="ind" :class="{'search-style-ind':searchStyleNum==ind,'is-disabled':val.disabled}">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
<span>{{val.name}}</span>
|
2019-12-17 17:17:30 +08:00
|
|
|
|
</li>-->
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2020-09-10 17:00:32 +08:00
|
|
|
|
<button @click="select" type="button" class="nz-btn nz-btn-size-normal nz-btn-style-light float-right" id="search-input-search"><i class="nz-icon nz-icon-search"></i></button>
|
2020-01-16 18:11:15 +08:00
|
|
|
|
<!--<div class="new-search-btn" @click="select">
|
2020-09-10 17:00:32 +08:00
|
|
|
|
<i class="nz-icon nz-icon-search"></i>
|
2020-01-16 18:11:15 +08:00
|
|
|
|
</div>-->
|
2019-12-16 17:14:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-12-17 17:17:30 +08:00
|
|
|
|
import searchSelectInfo from "./searchSelectInfo"; //搜索框组件--下拉框内容
|
2019-12-16 17:14:58 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: "index",
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2020-09-08 19:02:59 +08:00
|
|
|
|
selectDom: {top: '', tempTop: '', show: true}, // 选择弹框的位置
|
2020-03-17 19:01:09 +08:00
|
|
|
|
clearSearchShow: false,
|
2019-12-16 17:14:58 +08:00
|
|
|
|
select_conditionsName:'',
|
2019-12-17 17:17:30 +08:00
|
|
|
|
selectInfoList: searchSelectInfo,
|
2019-12-20 17:18:30 +08:00
|
|
|
|
select_title: '',
|
|
|
|
|
|
other: '',
|
2019-12-16 17:14:58 +08:00
|
|
|
|
localStorage_display: true,
|
|
|
|
|
|
input_list: true,
|
|
|
|
|
|
change_sreach_show: true,
|
2020-01-13 16:17:05 +08:00
|
|
|
|
select_list: [], //当前的搜索条件和值
|
2019-12-17 17:17:30 +08:00
|
|
|
|
historyList: [],
|
2019-12-16 17:14:58 +08:00
|
|
|
|
actionSelect:[],
|
2019-12-17 17:17:30 +08:00
|
|
|
|
dcSelect: [], //数据中心
|
2019-12-20 17:18:30 +08:00
|
|
|
|
assetSelect: [], //资产
|
2020-04-17 21:27:20 +08:00
|
|
|
|
projectSelect: [],
|
|
|
|
|
|
moduleSelect: [],
|
2020-04-20 21:27:32 +08:00
|
|
|
|
modelSelect: [],
|
2019-12-16 17:14:58 +08:00
|
|
|
|
schemaTypeSelect:[], //日志检索Protocol下拉菜单
|
|
|
|
|
|
TypeSelect:[],//Protocol二层下拉菜单
|
|
|
|
|
|
secondShow:'',//二层显示控制
|
|
|
|
|
|
input_sreach: '',
|
|
|
|
|
|
sreach_num: 0,
|
2020-01-13 16:17:05 +08:00
|
|
|
|
searchLabelList: [ //下拉列表里的选项
|
2019-12-16 17:14:58 +08:00
|
|
|
|
],
|
|
|
|
|
|
bool: false,
|
|
|
|
|
|
no_condition: '',
|
|
|
|
|
|
//历史记录列表
|
|
|
|
|
|
history_once: [],
|
2019-12-27 17:53:17 +08:00
|
|
|
|
name:"",
|
|
|
|
|
|
id:"",
|
2019-12-16 17:14:58 +08:00
|
|
|
|
schedata:{
|
|
|
|
|
|
name:'',
|
|
|
|
|
|
isValid:1,
|
|
|
|
|
|
pageSize:30,
|
|
|
|
|
|
pageNo:1
|
|
|
|
|
|
},
|
|
|
|
|
|
schlist:[],
|
|
|
|
|
|
timeFrame: [new Date(new Date() - 1 * 60 * 60 * 1000), new Date()],
|
|
|
|
|
|
dataBackG:true,
|
|
|
|
|
|
delBool : false,
|
2019-12-17 17:17:30 +08:00
|
|
|
|
searchStyleNum:-1,
|
|
|
|
|
|
isSearchNum :-1,
|
2019-12-16 17:14:58 +08:00
|
|
|
|
search_select_style_num:-1,
|
|
|
|
|
|
keyBool : false,
|
|
|
|
|
|
delnum :0,
|
|
|
|
|
|
delcriteriaBool:false,
|
|
|
|
|
|
selectInfo:false,
|
|
|
|
|
|
disabaled:true,
|
2020-10-14 10:25:56 +08:00
|
|
|
|
downBool:false,
|
|
|
|
|
|
where:this.$route.path
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
2020-03-31 17:22:15 +08:00
|
|
|
|
defaultValue: {
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
handler(n) {
|
|
|
|
|
|
if (n) {
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
if (this.defaultItem) {
|
|
|
|
|
|
if (this.defaultItem == 'alertMessageState' && this.defaultValue) {
|
|
|
|
|
|
this.searchLabelList.forEach((item, index) => {
|
|
|
|
|
|
if (item.id == 12) {
|
|
|
|
|
|
this.searchLabelList.splice(index, 1);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
this.select_list.push({
|
|
|
|
|
|
name: this.$t('alert.list.state'),
|
|
|
|
|
|
type: 'select',
|
|
|
|
|
|
label: 'state',
|
|
|
|
|
|
disabled: false,
|
|
|
|
|
|
val: this.$t('alert.list.pending'),
|
|
|
|
|
|
valnum: 1
|
|
|
|
|
|
});
|
|
|
|
|
|
this.input_sreach = '';
|
|
|
|
|
|
this.sreach_num = this.select_list.length;
|
|
|
|
|
|
this.change_sreach_show = false;
|
|
|
|
|
|
this.input_list = true;
|
|
|
|
|
|
this.select();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-03-23 21:46:19 +08:00
|
|
|
|
inTransform: {
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
handler(n) {
|
|
|
|
|
|
let listsK = document.querySelectorAll(".input_list");
|
|
|
|
|
|
listsK.forEach((item, index) => {
|
|
|
|
|
|
item.style.display = "none";
|
|
|
|
|
|
});
|
|
|
|
|
|
let listsV = document.querySelectorAll(".select_info_list");
|
|
|
|
|
|
listsV.forEach((item, index) => {
|
|
|
|
|
|
item.style.display = "none";
|
|
|
|
|
|
});
|
2020-09-08 19:02:59 +08:00
|
|
|
|
/*if (n) {
|
2020-03-23 21:46:19 +08:00
|
|
|
|
this.selectDom.tempTop = this.selectDom.top;
|
|
|
|
|
|
this.selectDom.top = '36px';
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.selectDom.top = this.selectDom.tempTop;
|
2020-09-08 19:02:59 +08:00
|
|
|
|
}*/
|
2020-03-23 21:46:19 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
listsK.forEach((item, index) => {
|
|
|
|
|
|
item.style.display = "";
|
|
|
|
|
|
});
|
|
|
|
|
|
listsV.forEach((item, index) => {
|
|
|
|
|
|
item.style.display = "";
|
|
|
|
|
|
});
|
|
|
|
|
|
}, 500);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-01-10 20:09:33 +08:00
|
|
|
|
select_list: {
|
|
|
|
|
|
//监听下拉列表
|
|
|
|
|
|
handler(newData, oldData) {
|
2020-03-23 21:46:19 +08:00
|
|
|
|
this.$refs.searchScrollbar.update();
|
2020-01-10 20:09:33 +08:00
|
|
|
|
if (newData.length == 0) {
|
|
|
|
|
|
this.change_sreach_show = true;
|
2020-03-17 19:01:09 +08:00
|
|
|
|
this.clearSearchShow = false;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.clearSearchShow = true;
|
2020-01-10 20:09:33 +08:00
|
|
|
|
}
|
2020-04-17 21:27:20 +08:00
|
|
|
|
/*if (this.$route.path.indexOf("alertList") > -1 || this.$route.path.indexOf("alertConfig") > -1) {
|
2020-01-13 16:17:05 +08:00
|
|
|
|
// 处理alertType--asset联动问题:
|
|
|
|
|
|
// 当已选alertType为asset时,将可选列表中的asset的disabled恢复为false;
|
|
|
|
|
|
// 当已选alertType不为asset时,将可选列表中的asset的disabled设为true,若有已选的asset,则删除;
|
|
|
|
|
|
let hasType = false;
|
|
|
|
|
|
for (let i = 0; i < newData.length; i++) {
|
|
|
|
|
|
if (newData[i].label == "alertType" && newData[i].valnum) { //若存在alertType,判断可选列表中是否有asset,有的话disabled置为false
|
|
|
|
|
|
hasType = true;
|
|
|
|
|
|
if (newData[i].valnum == 3) {
|
|
|
|
|
|
for (let j = 0; j < this.searchLabelList.length; j++) {
|
|
|
|
|
|
if (this.searchLabelList[j].label == 'asset') {
|
|
|
|
|
|
this.searchLabelList[j].disabled = false;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
for (let j = 0; j < newData.length; j++) {
|
|
|
|
|
|
if (newData[j].label == "asset") {
|
|
|
|
|
|
this.close_selcet_list(j);
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
for (let j = 0; j < this.searchLabelList.length; j++) {
|
|
|
|
|
|
if (this.searchLabelList[j].label == 'asset') {
|
|
|
|
|
|
this.searchLabelList[j].disabled = true;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!hasType) {
|
|
|
|
|
|
for (let j = 0; j < this.searchLabelList.length; j++) {
|
|
|
|
|
|
if (this.searchLabelList[j].label == 'asset') {
|
|
|
|
|
|
this.searchLabelList[j].disabled = true;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-04-17 21:27:20 +08:00
|
|
|
|
}*/
|
2020-01-10 20:09:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
no_condition: {
|
|
|
|
|
|
handler(newData, oldData) {
|
|
|
|
|
|
if (newData != '') {
|
|
|
|
|
|
this.input_list = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2020-11-21 16:12:02 +08:00
|
|
|
|
searchMsg:{
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
handler(n){
|
2020-11-22 16:51:30 +08:00
|
|
|
|
//console.log(n);
|
2020-11-21 16:12:02 +08:00
|
|
|
|
if(n){
|
|
|
|
|
|
n.searchLabelList.forEach(item=>{
|
|
|
|
|
|
if(item.id===27&&item.type==='idc'&&item.label==='idcId'){
|
|
|
|
|
|
this.getDcData()
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
2020-10-14 10:29:11 +08:00
|
|
|
|
props:['searchMsg','defaultItem','defaultValue','inTransform','position'],
|
2019-12-16 17:14:58 +08:00
|
|
|
|
methods: {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
//dc
|
2019-12-27 17:53:17 +08:00
|
|
|
|
clearSearch() {
|
|
|
|
|
|
this.select_list = [];
|
|
|
|
|
|
},
|
2020-05-21 16:08:23 +08:00
|
|
|
|
clickout(){
|
|
|
|
|
|
this.input_list=true;
|
|
|
|
|
|
},
|
2019-12-20 17:18:30 +08:00
|
|
|
|
selectObject(column, selectItem, e) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.stop_click(e);
|
2020-04-20 21:27:32 +08:00
|
|
|
|
for (let i = 0; i < this.select_list.length; i++) {
|
|
|
|
|
|
let val = this.select_list[i];
|
|
|
|
|
|
if (val.type == 'dc' && selectItem.searchType == 'dc'){
|
|
|
|
|
|
val.val = selectItem.name;
|
|
|
|
|
|
val.valnum = selectItem.id;
|
|
|
|
|
|
val.valString = '';
|
|
|
|
|
|
} else if (val.type == 'project' && selectItem.searchType == 'project') {
|
|
|
|
|
|
val.val = selectItem.name;
|
|
|
|
|
|
val.valnum = selectItem.id;
|
|
|
|
|
|
val.valString = '';
|
|
|
|
|
|
} else if (val.type == 'module' && selectItem.searchType == 'module') {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
val.val = selectItem.name;
|
|
|
|
|
|
val.valnum = selectItem.id;
|
|
|
|
|
|
val.valString = '';
|
2020-04-20 21:27:32 +08:00
|
|
|
|
} else if (val.type == 'asset' && selectItem.searchType == 'asset') {
|
2019-12-20 17:18:30 +08:00
|
|
|
|
val.val = selectItem.host;
|
|
|
|
|
|
val.valnum = selectItem.id;
|
|
|
|
|
|
val.valString = '';
|
2019-12-17 17:17:30 +08:00
|
|
|
|
}
|
2020-04-20 21:27:32 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
//this.select_list.push({type: 'dc', val: selectItem.name, valnum: selectItem.id});
|
|
|
|
|
|
this.input_sreach = '';
|
|
|
|
|
|
this.sreach_num = this.select_list.length;
|
|
|
|
|
|
this.change_sreach_show = true;
|
|
|
|
|
|
this.input_list = false;
|
|
|
|
|
|
var _this = this;
|
|
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
_this.getHeight();
|
|
|
|
|
|
});
|
2020-04-20 21:27:32 +08:00
|
|
|
|
/*this.$nextTick(() => {
|
|
|
|
|
|
this.$refs.searchScrollbar.update();
|
|
|
|
|
|
});*/
|
2019-12-17 17:17:30 +08:00
|
|
|
|
},
|
2019-12-16 17:14:58 +08:00
|
|
|
|
//一层下拉点击
|
2019-12-17 17:17:30 +08:00
|
|
|
|
tr_selectTypeInfo(val){
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.TypeSelect=[];
|
2019-12-17 17:17:30 +08:00
|
|
|
|
val.data.length!=0?this.TypeSelect.push(val.data[0]):'';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
val.data.length!=0?this.secondShow=true:''
|
|
|
|
|
|
},
|
|
|
|
|
|
//二层下拉点击
|
|
|
|
|
|
tr_selectProtocolInfo(val){
|
|
|
|
|
|
this.select_list=[];
|
|
|
|
|
|
this.select_list.push({
|
|
|
|
|
|
name: val.name,
|
|
|
|
|
|
// id:id,
|
|
|
|
|
|
type:val.type,
|
|
|
|
|
|
label:val.label,
|
|
|
|
|
|
// disabled:disabled
|
|
|
|
|
|
})
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.sreach_num = this.select_list.length-1
|
|
|
|
|
|
this.input_list = !this.input_list
|
|
|
|
|
|
// setTimeout("document.getElementById(\"sreach_input\").focus()", 500);
|
|
|
|
|
|
var _this = this
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
_this.getHeight()
|
|
|
|
|
|
},)
|
|
|
|
|
|
},
|
2019-12-17 17:17:30 +08:00
|
|
|
|
Iskeywords(ind){
|
|
|
|
|
|
if(this.select_list[ind].id==29){
|
|
|
|
|
|
this.searchLabelList.forEach(val=>{
|
|
|
|
|
|
if(val.id==30||val.id==31||val.id==32||val.id==33){
|
|
|
|
|
|
val.disabled = false
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}else if(this.select_list[ind].id==30||this.select_list[ind].id==31||this.select_list[ind].id==32||this.select_list[ind].id==33){
|
|
|
|
|
|
this.searchLabelList.forEach(val=>{
|
|
|
|
|
|
if(val.id==29){
|
|
|
|
|
|
val.disabled = false
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
getDcData() {
|
2020-04-15 19:40:09 +08:00
|
|
|
|
this.$get('idc', {pageNo: 1, pageSize: -1}).then(response => {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.dcSelect = response.data.list;
|
2020-04-20 21:27:32 +08:00
|
|
|
|
this.dcSelect.forEach((item, index) => {
|
|
|
|
|
|
this.$set(item, 'searchType', 'dc');
|
|
|
|
|
|
});
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
2019-12-20 17:18:30 +08:00
|
|
|
|
getAssetData() {
|
2020-04-15 19:40:09 +08:00
|
|
|
|
this.$get('asset', {pageNo: 1, pageSize: -1}).then(response => {
|
2019-12-20 17:18:30 +08:00
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.assetSelect = response.data.list;
|
2020-04-20 21:27:32 +08:00
|
|
|
|
this.assetSelect.forEach((item, index) => {
|
|
|
|
|
|
this.$set(item, 'searchType', 'asset');
|
|
|
|
|
|
});
|
2019-12-20 17:18:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
2020-01-08 22:19:46 +08:00
|
|
|
|
getModelData() {
|
2020-04-20 21:27:32 +08:00
|
|
|
|
this.$get('model', {pageNo: 1, pageSize: -1}).then(response => {
|
2020-01-08 22:19:46 +08:00
|
|
|
|
if (response.code === 200) {
|
2020-04-20 21:27:32 +08:00
|
|
|
|
this.modelSelect = response.data.list;
|
|
|
|
|
|
this.modelSelect.forEach((item, index) => {
|
|
|
|
|
|
this.$set(item, 'searchType', 'model');
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
getProjectData() {
|
|
|
|
|
|
this.$get('project', {pageNo: 1, pageSize: -1}).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.projectSelect = response.data.list;
|
|
|
|
|
|
this.projectSelect.forEach((item, index) => {
|
|
|
|
|
|
this.$set(item, 'searchType', 'project');
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
getModuleData() {
|
|
|
|
|
|
this.$get('module', {pageNo: 1, pageSize: -1}).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.moduleSelect = response.data.list;
|
|
|
|
|
|
this.moduleSelect.forEach((item, index) => {
|
|
|
|
|
|
this.$set(item, 'searchType', 'module');
|
|
|
|
|
|
});
|
2020-01-08 22:19:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
2019-12-16 17:14:58 +08:00
|
|
|
|
//点击确认选择下拉内容
|
|
|
|
|
|
tr_selectInfo(selectLabel,value,label,e){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.stop_click(e);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.forEach(val=>{
|
|
|
|
|
|
if(val.label == selectLabel){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
val.val = label;
|
|
|
|
|
|
val.valnum = value;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
2020-01-13 16:17:05 +08:00
|
|
|
|
for (let i = 0; i < this.select_list.length; i++) {
|
|
|
|
|
|
if (this.select_list[i].label == selectLabel) {
|
|
|
|
|
|
this.select_list.splice(i, 1, Object.assign({}, this.select_list[i], {val: label, valnum: value}));
|
|
|
|
|
|
/*this.select_list[i].val = label;
|
|
|
|
|
|
this.select_list[i].valnum = value;*/
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.input_sreach = '';
|
|
|
|
|
|
this.sreach_num = this.select_list.length;
|
|
|
|
|
|
this.change_sreach_show = true;
|
|
|
|
|
|
this.input_list = false;
|
2020-01-10 20:09:33 +08:00
|
|
|
|
var _this = this;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
2019-12-17 17:17:30 +08:00
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
_this.getHeight();
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
//点击确认value是string类型的下拉内容, param: 字段对象,选中的选项
|
|
|
|
|
|
stringSelectInfo(column, selectItem, e){
|
|
|
|
|
|
this.stop_click(e);
|
|
|
|
|
|
this.select_list.forEach(val=>{
|
|
|
|
|
|
if(val.label == column.label){
|
|
|
|
|
|
val.val = selectItem.value;
|
|
|
|
|
|
val.valString = selectItem.label;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
this.input_sreach = '';
|
|
|
|
|
|
this.sreach_num = this.select_list.length;
|
|
|
|
|
|
this.change_sreach_show = true;
|
|
|
|
|
|
this.input_list = false;
|
|
|
|
|
|
var _this = this;
|
|
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
setTimeout(function () {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
_this.getHeight();
|
|
|
|
|
|
});
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
// 点击历史记录图标
|
|
|
|
|
|
look_history(e){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.stop_click(e);
|
|
|
|
|
|
this.localStorage_display=!this.localStorage_display;
|
2020-10-14 10:25:56 +08:00
|
|
|
|
this.restructure_historyDate();
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
backtime(t){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
let myDate=new Date(t);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
let nt=myDate.getFullYear()+'-'+(myDate.getMonth()>8?'':0)
|
|
|
|
|
|
+(myDate.getMonth()+1)+'-'+(myDate.getDate()>9?'':0)
|
|
|
|
|
|
+ myDate.getDate()+' '
|
|
|
|
|
|
+(myDate.getHours()>9?'':'0')+myDate.getHours()+':'
|
|
|
|
|
|
+(myDate.getMinutes()>9?'':0)+myDate.getMinutes()+':'
|
2019-12-17 17:17:30 +08:00
|
|
|
|
+(myDate.getSeconds()>9?'':0)+myDate.getSeconds();
|
|
|
|
|
|
return nt;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
changeDate(){
|
|
|
|
|
|
this.dataBackG = false
|
|
|
|
|
|
this.change_sreach_show = true
|
|
|
|
|
|
if(this.timeFrame!=[]){
|
|
|
|
|
|
this.select_list[this.sreach_num].val = this.backtime(this.timeFrame[0])+' - '+this.backtime(this.timeFrame[1])
|
|
|
|
|
|
this.input_sreach = ''
|
|
|
|
|
|
this.sreach_num++
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
//选择时间计划
|
|
|
|
|
|
selectSul(name){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.change_sreach_show = true;
|
|
|
|
|
|
this.select_list[this.sreach_num].val = name;
|
|
|
|
|
|
this.input_sreach = '';
|
|
|
|
|
|
this.sreach_num++;
|
|
|
|
|
|
this.getHeight();
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//点击搜索
|
|
|
|
|
|
select() {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
let objectInfo = {};
|
|
|
|
|
|
this.change_sreach_show = true;
|
2019-12-27 17:53:17 +08:00
|
|
|
|
this.name = '', this.id = '';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if (this.input_sreach != '') {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.select_list[this.sreach_num].val = this.input_sreach;
|
|
|
|
|
|
this.input_sreach = '';
|
|
|
|
|
|
this.sreach_num=this.select_list.length;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
//input有值 默认添加到name中
|
|
|
|
|
|
if (this.no_condition != '') {
|
|
|
|
|
|
let no_condition_bool = false,no_condition_str = '',route = this.$route.path
|
|
|
|
|
|
if(this.select_list.length==0){
|
|
|
|
|
|
//日志模块新增路由判断
|
|
|
|
|
|
if(route == '/Log_SecurityEventLogs'||route == '/Log_ProxyEventLogs'||route=='/Log_SesssionRecords'||route=='/Log_RadiusLogs'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
no_condition_str = 'logId';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else if(route == '/Device_DeviceList'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
no_condition_str = 'sn';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else if(route=='/system_PolicyConfigurationLog' || route=='/system_LoginLog'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
no_condition_str='modifyBy';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else {
|
2019-12-27 17:53:17 +08:00
|
|
|
|
no_condition_str='name';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-27 17:53:17 +08:00
|
|
|
|
if(no_condition_str=='name'){
|
2020-10-21 13:38:18 +08:00
|
|
|
|
// 处理空白输入时不可作为搜索条件
|
|
|
|
|
|
// this.select_list.push({name: this.select_title.name, id:2, type:'input',val:this.no_condition,label:'name'});
|
|
|
|
|
|
// this.searchLabelList.forEach((val,ind)=>{
|
|
|
|
|
|
// if(val.id == 2){
|
|
|
|
|
|
// this.searchLabelList.splice(ind,1);
|
|
|
|
|
|
// }
|
|
|
|
|
|
// })
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else if(no_condition_str=='modifyBy'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.select_list.push({name: this.select_title.Operator, id:6, type:'input',val:this.no_condition,label:'modifyBy'});
|
|
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id == 6){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind,1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}else if(no_condition_str=='sn'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.select_list.push({name: this.select_title.SN, id:8, type:'input',val:this.no_condition,label:'sn'});
|
|
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id == 8){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind,1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
2019-12-27 17:53:17 +08:00
|
|
|
|
}else if(no_condition_str=='id'){
|
|
|
|
|
|
this.select_list.push({name: this.select_title.Policy_ID, id:1, type:'input',val:this.no_condition,label:'id'});
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id == 1){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind,1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}else if(no_condition_str=='logId'){ //日志模块新增判断
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.select_list.push({ name: 'Log ID', type: 'input', label: 'Log Id', val:this.no_condition,});
|
|
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id == 1){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind,1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.sreach_num++;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
let no_condition_bool = false,no_condition_str = '',route = this.$route.path,bool = true;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(route == '/Log_SesssionRecords'||route == '/Log_EventLogs'){
|
2019-12-27 17:53:17 +08:00
|
|
|
|
no_condition_str = 'id';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else if(route == '/Device_DeviceList'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
no_condition_str = 'sn';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else if(route=='/system_PolicyConfigurationLog' || route=='/system_UserManagement' || route=='/system_LoginLog'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
no_condition_str='modifyBy';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else {
|
2019-12-27 17:53:17 +08:00
|
|
|
|
no_condition_str='name';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
this.select_list.forEach(val => {
|
|
|
|
|
|
if(val.label==no_condition_str){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
bool = false;
|
|
|
|
|
|
val.val += ','+this.no_condition;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(bool){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.label == no_condition_str){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
val.val = this.no_condition;
|
|
|
|
|
|
this.select_list.push(val);
|
|
|
|
|
|
this.searchLabelList.splice(ind,1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
|
|
|
|
|
this.sreach_num++;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.no_condition = '';
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
let labelBool = true;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.forEach(val=>{
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if (typeof (val.val) !== 'undefined' && val.val) {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.type == 'select'){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if (val.label == 'alertType' || val.label == 'promType') {
|
|
|
|
|
|
objectInfo.type = val.valnum;
|
2020-01-09 14:57:44 +08:00
|
|
|
|
} else if (val.label == 'assetState') {
|
|
|
|
|
|
objectInfo.state = val.valnum;
|
2019-12-17 17:17:30 +08:00
|
|
|
|
} else if(typeof(val.valnum) == "undefined"||val.valnum == ''){
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.selectInfoList[val.label].forEach(item=>{
|
|
|
|
|
|
if(item.label == val.val){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
labelBool = false;
|
|
|
|
|
|
objectInfo[val.label] = item.value;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
if(labelBool){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
objectInfo[val.label] = val.val;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}else {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
objectInfo[val.label] = val.valnum;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
} else if(val.type == 'selectSelf'){
|
|
|
|
|
|
objectInfo[val.label] = val.valnum;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
} else if(val.type == 'selectAction'){ //新增日志判断
|
2019-12-17 17:17:30 +08:00
|
|
|
|
objectInfo[val.label] = val.valnum;
|
|
|
|
|
|
} else if (val.type == 'dc') {
|
|
|
|
|
|
objectInfo.idcId = val.valnum;
|
2020-04-21 22:39:07 +08:00
|
|
|
|
} else if (val.type == 'asset') {
|
2020-11-12 09:54:42 +08:00
|
|
|
|
objectInfo.asset = val.val;
|
2020-04-20 21:27:32 +08:00
|
|
|
|
} else if (val.type == 'module') {
|
|
|
|
|
|
objectInfo.moduleId = val.valnum;
|
|
|
|
|
|
} else if (val.type == 'project') {
|
|
|
|
|
|
objectInfo.projectId = val.valnum;
|
2020-11-21 16:12:02 +08:00
|
|
|
|
}else if (val.type == 'idc') {
|
|
|
|
|
|
objectInfo.dcId = val.valnum;
|
2019-12-17 17:17:30 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
objectInfo[val.label] = val.val;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.getHeight()
|
|
|
|
|
|
//搜索完成后存储在本地历史记录中
|
|
|
|
|
|
if(this.select_list.length!=0){
|
2020-10-14 10:25:56 +08:00
|
|
|
|
if (JSON.parse(localStorage.getItem('nz-history-'+this.where)) == undefined || JSON.parse(localStorage.getItem('nz-history-'+this.where)) == []) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.historyList.unshift(this.select_list);
|
2020-10-14 10:25:56 +08:00
|
|
|
|
localStorage.setItem('nz-history-'+this.where, JSON.stringify(this.historyList));
|
2019-12-16 17:14:58 +08:00
|
|
|
|
} else {
|
2020-10-14 10:25:56 +08:00
|
|
|
|
this.historyList = JSON.parse(localStorage.getItem('nz-history-'+this.where));
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.historyList.unshift(this.select_list);
|
|
|
|
|
|
if (this.historyList.length > 10) {
|
|
|
|
|
|
this.historyList.length = 10;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2020-10-14 10:25:56 +08:00
|
|
|
|
localStorage.setItem('nz-history-'+this.where, JSON.stringify(this.historyList));
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.input_list = true;
|
|
|
|
|
|
this.restructure_historyDate();
|
2020-05-21 16:08:23 +08:00
|
|
|
|
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.$emit("search", objectInfo);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//清空历史记录
|
|
|
|
|
|
clear_history() {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.historyList = [];
|
|
|
|
|
|
this.history_once = [];
|
2020-10-14 10:25:56 +08:00
|
|
|
|
localStorage.setItem('nz-history-'+this.where, JSON.stringify(this.historyList));
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//再次点击之前的历史记录
|
|
|
|
|
|
select_history(ind,e) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.stop_click(e);
|
|
|
|
|
|
this.input_list = true;
|
|
|
|
|
|
this.change_sreach_show = true;
|
|
|
|
|
|
this.localStorage_display = !this.localStorage_display;
|
|
|
|
|
|
this.select_list = [];
|
2020-10-14 10:25:56 +08:00
|
|
|
|
JSON.parse(localStorage.getItem('nz-history-'+this.where)).splice(ind,1);
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.select_list = JSON.parse(JSON.stringify(this.history_once[ind]));
|
|
|
|
|
|
this.sreach_num = this.select_list.length;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.forEach(val => {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.forEach((item, index) => {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if (val.id == item.id) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(index, 1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select()
|
|
|
|
|
|
},
|
|
|
|
|
|
// 获取历史记录 数据进行处理以便循环展示
|
|
|
|
|
|
restructure_historyDate() {
|
2020-10-14 10:25:56 +08:00
|
|
|
|
if (localStorage.getItem('nz-history-'+this.where) !== undefined && localStorage.getItem('nz-history-'+this.where) !== null) {
|
|
|
|
|
|
this.history_once = JSON.parse(localStorage.getItem('nz-history-'+this.where));
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
clear_search_list(e){
|
|
|
|
|
|
var keyCode = window.event ? e.keyCode : e.which;
|
|
|
|
|
|
},
|
|
|
|
|
|
//监听输入框鼠标抬起事件
|
|
|
|
|
|
enter_one(e){
|
|
|
|
|
|
var keyCode = window.event ? e.keyCode : e.which;
|
|
|
|
|
|
if(keyCode == 40){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(this.searchStyleNum<this.searchLabelList.length-1){
|
|
|
|
|
|
var disabledNum = 0;
|
|
|
|
|
|
this.searchLabelList.forEach(val=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.disabled){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
disabledNum++;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
|
|
|
|
|
this.isSearchNum=this.searchStyleNum;
|
|
|
|
|
|
this.isSearchNum++;
|
|
|
|
|
|
if(!(this.searchLabelList[this.isSearchNum].disabled)){
|
|
|
|
|
|
this.searchStyleNum++;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchStyleNum+=disabledNum+1;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(this.searchStyleNum>=7){
|
|
|
|
|
|
document.getElementById('input_list').scrollTop+=28;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if(keyCode == 38){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(this.searchStyleNum>=0){
|
|
|
|
|
|
var disabledNum = 0;
|
|
|
|
|
|
this.searchLabelList.forEach(val=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.disabled){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
disabledNum++;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.isSearchNum=this.searchStyleNum;
|
|
|
|
|
|
if(this.isSearchNum>0){
|
|
|
|
|
|
this.isSearchNum--
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(!(this.searchLabelList[this.isSearchNum].disabled)){
|
|
|
|
|
|
this.searchStyleNum--
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchStyleNum-=disabledNum+1
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(this.searchStyleNum<=this.searchLabelList.length-8){
|
2019-12-16 17:14:58 +08:00
|
|
|
|
document.getElementById('input_list').scrollTop -= 28
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if(this.no_condition==''){
|
|
|
|
|
|
if(!this.keyBool){
|
|
|
|
|
|
if(keyCode==8){
|
|
|
|
|
|
let arr = this.select_list
|
|
|
|
|
|
if(!this.delBool){
|
|
|
|
|
|
if(this.input_sreach==''){
|
|
|
|
|
|
for(var i = arr.length-1 ; i>=0 ; i--){
|
|
|
|
|
|
this.input_list = true
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.sreach_num = i
|
|
|
|
|
|
this.input_sreach = arr[i].val
|
|
|
|
|
|
setTimeout("document.getElementById(\"sreach_input\").focus()", 500);
|
|
|
|
|
|
this.delBool = true
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (keyCode == 13) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(this.searchStyleNum<=0){
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select()
|
|
|
|
|
|
}else {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
let val = this.searchLabelList[this.searchStyleNum].name,
|
|
|
|
|
|
ind = this.searchStyleNum,
|
|
|
|
|
|
id= this.searchLabelList[this.searchStyleNum].id,
|
|
|
|
|
|
type= this.searchLabelList[this.searchStyleNum].type,
|
|
|
|
|
|
label= this.searchLabelList[this.searchStyleNum].label,
|
2020-11-17 16:41:52 +08:00
|
|
|
|
disabled= this.searchLabelList[this.searchStyleNum].disabled,
|
|
|
|
|
|
readonly= this.searchLabelList[this.searchStyleNum].readonly;
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchStyleNum = -1
|
2020-11-17 16:41:52 +08:00
|
|
|
|
this.select_name(val, ind, id, type,label,disabled,readonly)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// input框监听是按删除还是回车
|
2019-12-23 17:39:15 +08:00
|
|
|
|
enter(val, e) {
|
2020-11-22 16:51:30 +08:00
|
|
|
|
//console.log(val);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
var keyCode = window.event ? e.keyCode : e.which;
|
2019-12-23 17:39:15 +08:00
|
|
|
|
if(val == 'ID'&&keyCode == 13){
|
|
|
|
|
|
let id = /^[0-9]*$/
|
|
|
|
|
|
if (!id.test(this.input_sreach) || this.input_sreach > 2147483647) {
|
|
|
|
|
|
//如果有不正确的值 进行删除
|
|
|
|
|
|
this.input_sreach = ''
|
|
|
|
|
|
this.$message.error(this.other.delErrorId)
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(keyCode!==8){
|
|
|
|
|
|
this.delBool = false
|
|
|
|
|
|
this.delcriteriaBool = false
|
|
|
|
|
|
}
|
|
|
|
|
|
if(this.delBool){
|
|
|
|
|
|
if(keyCode==8){
|
|
|
|
|
|
if(this.input_sreach==''){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.searchLabelList.forEach((val, k) => {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if (this.select_list[this.sreach_num].id == val.id) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(k + 1, 0, val)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.Iskeywords(this.sreach_num)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.select_list.splice(this.sreach_num, 1)
|
|
|
|
|
|
this.change_sreach_show=true
|
|
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
|
|
|
|
|
this.input_list = false
|
|
|
|
|
|
this.delBool = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}else {
|
|
|
|
|
|
if(keyCode==8){
|
|
|
|
|
|
if(this.delcriteriaBool){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.searchLabelList.forEach((val, k) => {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if (this.select_list[this.sreach_num].id == val.id) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(k + 1, 0, val)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.Iskeywords(this.sreach_num)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.select_list.splice(this.sreach_num, 1)
|
|
|
|
|
|
this.change_sreach_show=true
|
|
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
|
|
|
|
|
this.input_list = false
|
|
|
|
|
|
this.delcriteriaBool = false
|
|
|
|
|
|
}else {
|
|
|
|
|
|
if(this.input_sreach==''){
|
|
|
|
|
|
this.delcriteriaBool = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(keyCode == 38||keyCode == 40){
|
|
|
|
|
|
if(this.select_list[this.sreach_num].type !== 'select'){
|
|
|
|
|
|
if(this.input_sreach!==''){
|
|
|
|
|
|
this.zhezhao_click()
|
|
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
|
|
|
|
|
this.input_list = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}else {
|
|
|
|
|
|
if(keyCode == 40){
|
|
|
|
|
|
this.selectInfo = true
|
|
|
|
|
|
if(this.search_select_style_num<this.selectInfoList[this.select_list[this.sreach_num].label].length-1){
|
|
|
|
|
|
this.search_select_style_num++
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if(keyCode == 38){
|
|
|
|
|
|
this.selectInfo = true
|
|
|
|
|
|
if(this.search_select_style_num>=0){
|
|
|
|
|
|
this.search_select_style_num--
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}else if(keyCode == 13) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.zheze_none = true
|
2019-12-16 17:14:58 +08:00
|
|
|
|
//回车键
|
|
|
|
|
|
if (!this.selectInfo) {
|
|
|
|
|
|
this.select()
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.selectInfo = false
|
|
|
|
|
|
this.tr_selectInfo(this.select_list[this.sreach_num].label, this.selectInfoList[this.select_list[this.sreach_num].label][this.search_select_style_num].label, this.selectInfoList[this.select_list[this.sreach_num].label][this.search_select_style_num].value, e)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 清空已输入的搜索条件
|
|
|
|
|
|
clear_input(e) {
|
|
|
|
|
|
this.stop_click(e)
|
2020-04-20 21:27:32 +08:00
|
|
|
|
this.no_condition = ''
|
|
|
|
|
|
this.input_sreach = ''
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list = []
|
2020-11-03 17:09:31 +08:00
|
|
|
|
this.searchLabelList = []
|
2019-12-17 17:17:30 +08:00
|
|
|
|
JSON.parse(JSON.stringify(this.searchMsg.searchLabelList)).forEach(val => {
|
|
|
|
|
|
this.searchLabelList.push(val)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
})
|
2020-04-20 21:27:32 +08:00
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
this.$refs.searchScrollbar.update();
|
|
|
|
|
|
});
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//修改已有参数
|
|
|
|
|
|
update_sreach(ind,e) {
|
2019-12-17 17:17:30 +08:00
|
|
|
|
//if(this.select_list[ind].id==6||this.select_list[ind].id==28){
|
|
|
|
|
|
if(false){
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.sreach_num = ind
|
|
|
|
|
|
this.downBool = false
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.input_list = true
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.input_list = true
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.sreach_num = ind
|
|
|
|
|
|
this.input_sreach = this.select_list[ind].val
|
|
|
|
|
|
if(this.select_list[ind].type=='input'){
|
|
|
|
|
|
this.downBool = true
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.downBool = false
|
|
|
|
|
|
}
|
|
|
|
|
|
setTimeout("document.getElementById(\"sreach_input\").focus()", 50);
|
|
|
|
|
|
this.getHeight()
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.zheze_none = false
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
//删除要搜索的条件
|
|
|
|
|
|
close_selcet_list(ind, e){
|
2020-01-10 20:09:33 +08:00
|
|
|
|
if (e) {
|
|
|
|
|
|
this.stop_click(e)
|
|
|
|
|
|
}
|
2020-01-13 16:17:05 +08:00
|
|
|
|
// 处理alertType--asset联动问题:删除alertType时,将asset也删除
|
2020-04-21 22:39:07 +08:00
|
|
|
|
/*if (this.select_list[ind].label == 'alertType') {
|
2020-01-10 20:09:33 +08:00
|
|
|
|
for (let i = 0; i < this.select_list.length; i++) {
|
|
|
|
|
|
if (this.select_list[i].label == 'asset') {
|
|
|
|
|
|
this.close_selcet_list(i);
|
|
|
|
|
|
for (let j = 0; j < this.searchLabelList.length; j++) {
|
|
|
|
|
|
if (this.searchLabelList[j].label == 'asset') {
|
|
|
|
|
|
this.searchLabelList[j].disabled = true;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-04-21 22:39:07 +08:00
|
|
|
|
}*/
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.searchLabelList.forEach((val, key) => {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if (this.select_list[ind].id == val.id) {
|
2020-11-03 17:09:31 +08:00
|
|
|
|
this.searchLabelList.splice(key+1 , 0, val);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.Iskeywords(ind)
|
|
|
|
|
|
}
|
2020-01-13 16:17:05 +08:00
|
|
|
|
});
|
|
|
|
|
|
this.select_list.splice(ind, 1);
|
|
|
|
|
|
this.sreach_num--;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//阻止冒泡事件
|
|
|
|
|
|
stop_click(e) {
|
2020-03-03 14:12:21 +08:00
|
|
|
|
if (e) {
|
|
|
|
|
|
e.cancelBubble = true;
|
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
}
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//点击遮罩层
|
|
|
|
|
|
zhezhao_click() {
|
|
|
|
|
|
if(this.input_sreach!=''){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(!this.searchMsg.zheze_none){
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if (this.input_sreach!='') {
|
|
|
|
|
|
this.change_sreach_show = true
|
|
|
|
|
|
let IDsplit,
|
|
|
|
|
|
id = /^[0-9]*$/,
|
|
|
|
|
|
bool = true
|
|
|
|
|
|
if (this.select_list[this.sreach_num].id == 1) {
|
|
|
|
|
|
//id==1 判断是不是搜索ID 如果是ID 会出现搜索多个ID 分割ID
|
|
|
|
|
|
IDsplit = this.input_sreach.split(',')
|
|
|
|
|
|
//循环分割出来的ID 判断输入的每个ID是否正确
|
|
|
|
|
|
for (let i = IDsplit.length - 1; i >= 0; i--) {
|
|
|
|
|
|
if (!id.test(IDsplit[i]) || IDsplit[i] > 2147483647) {
|
|
|
|
|
|
//如果有不正确的值 进行删除
|
|
|
|
|
|
IDsplit.splice(i, 1)
|
|
|
|
|
|
this.$message.error(this.other.delErrorId)
|
|
|
|
|
|
}
|
|
|
|
|
|
if (IDsplit[i] == '') {
|
|
|
|
|
|
IDsplit.splice(i, 1)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.input_sreach = ''
|
|
|
|
|
|
//从新拼接ID内容
|
|
|
|
|
|
IDsplit.forEach(val => {
|
|
|
|
|
|
this.input_sreach += val + ','
|
|
|
|
|
|
})
|
|
|
|
|
|
this.input_sreach = this.input_sreach.substr(0, this.input_sreach.length - 1)
|
|
|
|
|
|
if(this.input_sreach!=''){
|
|
|
|
|
|
this.select_list[this.sreach_num].val = this.input_sreach
|
|
|
|
|
|
this.input_sreach = ''
|
|
|
|
|
|
this.sreach_num++
|
|
|
|
|
|
this.sreach_num = this.select_list.length
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.sreach_num = 0
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.select_list[this.sreach_num].val = this.input_sreach
|
|
|
|
|
|
this.input_sreach = ''
|
|
|
|
|
|
this.sreach_num = this.select_list.length
|
|
|
|
|
|
}
|
|
|
|
|
|
}else {
|
|
|
|
|
|
let Bool = false
|
|
|
|
|
|
this.select_list.forEach(val=>{
|
|
|
|
|
|
if(val.val==''||val.val==undefined){
|
|
|
|
|
|
Bool = true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
if(Bool){
|
|
|
|
|
|
this.sreach_num = this.select_list.length-1
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.sreach_num = this.select_list.length
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.no_condition != '') {
|
|
|
|
|
|
this.change_sreach_show = true
|
|
|
|
|
|
if(this.select_list.length==0){
|
2019-12-27 17:53:17 +08:00
|
|
|
|
this.select_list.push({name: 'Name', id:2, type:'input',val:this.no_condition,label:'name'})
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id == 2){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind,1)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.sreach_num++
|
|
|
|
|
|
}else {
|
|
|
|
|
|
let bool = true
|
|
|
|
|
|
this.select_list.forEach(val => {
|
|
|
|
|
|
if(val.id==2){
|
|
|
|
|
|
bool = false
|
|
|
|
|
|
val.val += ','+this.no_condition
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
if(bool){
|
2019-12-27 17:53:17 +08:00
|
|
|
|
this.select_list.push({name: 'Name', id:2, type:'input',val:this.no_condition,label:'name'})
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.forEach((val,ind)=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id == 2){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind,1)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.sreach_num++
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.no_condition = ''
|
|
|
|
|
|
this.sreach_num = this.select_list.length
|
|
|
|
|
|
}
|
|
|
|
|
|
setTimeout("document.getElementById(\"one-input\").focus()", 500);
|
|
|
|
|
|
this.input_list = !this.input_list
|
|
|
|
|
|
var _this = this
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
_this.getHeight()
|
|
|
|
|
|
},)
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.zheze_none = true
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
//点击搜索框 显示搜索类型
|
|
|
|
|
|
read_input(e) {
|
|
|
|
|
|
e.cancelBubble = true;
|
|
|
|
|
|
e.stopPropagation();
|
2020-03-23 21:46:19 +08:00
|
|
|
|
this.getHeight();
|
|
|
|
|
|
this.input_list = !this.input_list;
|
|
|
|
|
|
this.getSelectPosition(e);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
//点击选择 搜索类型
|
2020-11-17 16:41:52 +08:00
|
|
|
|
select_name(val, ind, id, type,label,disabled,readonly,e ) {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
// if(id==43||id==45||id==48){ //根据id判断是否开启ip验证
|
|
|
|
|
|
// this.select_conditionsName=true
|
|
|
|
|
|
// }
|
2019-12-17 17:17:30 +08:00
|
|
|
|
if(type=='input'){
|
|
|
|
|
|
this.downBool = true;
|
|
|
|
|
|
}else {
|
|
|
|
|
|
this.downBool = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.no_condition = '';
|
|
|
|
|
|
this.searchMsg.zheze_none = false;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(!disabled){
|
2020-10-21 13:38:18 +08:00
|
|
|
|
// 下标为0 不再直接执行查询
|
|
|
|
|
|
// if (ind == 0) {
|
|
|
|
|
|
// this.select()
|
|
|
|
|
|
// } else
|
|
|
|
|
|
if(id == 7){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind, 1)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.push({
|
|
|
|
|
|
name: val,
|
|
|
|
|
|
id:id,
|
|
|
|
|
|
type:type,
|
|
|
|
|
|
label:label,
|
2020-11-17 16:41:52 +08:00
|
|
|
|
disabled:disabled,
|
|
|
|
|
|
readonly
|
2019-12-16 17:14:58 +08:00
|
|
|
|
})
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.input_list = !this.input_list
|
|
|
|
|
|
}else if(id==29){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind, 1)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.push({
|
|
|
|
|
|
name: val,
|
|
|
|
|
|
id:id,
|
|
|
|
|
|
type:type,
|
|
|
|
|
|
label:label,
|
2020-11-17 16:41:52 +08:00
|
|
|
|
disabled:disabled,
|
|
|
|
|
|
readonly
|
2019-12-16 17:14:58 +08:00
|
|
|
|
})
|
|
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.sreach_num = this.select_list.length-1
|
|
|
|
|
|
this.input_list = !this.input_list
|
|
|
|
|
|
setTimeout("document.getElementById(\"sreach_input\").focus()", 500);
|
2020-03-23 21:46:19 +08:00
|
|
|
|
/* this.searchLabelList.forEach(val=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id==30||val.id==31||val.id==32||val.id==33){
|
|
|
|
|
|
val.disabled = true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
}else if(id==30||id==31||id==32||id==33){
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchLabelList.splice(ind, 1)
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.push({
|
|
|
|
|
|
name: val,
|
|
|
|
|
|
id:id,
|
|
|
|
|
|
type:type,
|
|
|
|
|
|
label:label,
|
|
|
|
|
|
disabled:disabled
|
2020-03-23 21:46:19 +08:00
|
|
|
|
})*/
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.change_sreach_show = false
|
|
|
|
|
|
this.sreach_num = this.select_list.length-1
|
|
|
|
|
|
this.input_list = !this.input_list
|
|
|
|
|
|
setTimeout("document.getElementById(\"sreach_input\").focus()", 500);
|
2020-03-23 21:46:19 +08:00
|
|
|
|
/*this.searchLabelList.forEach(val=>{
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.id==29){
|
|
|
|
|
|
val.disabled = true
|
|
|
|
|
|
}
|
2020-03-23 21:46:19 +08:00
|
|
|
|
})*/
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}else {
|
2020-03-23 21:46:19 +08:00
|
|
|
|
this.searchLabelList.splice(ind, 1);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
this.select_list.push({
|
|
|
|
|
|
name: val,
|
|
|
|
|
|
id:id,
|
|
|
|
|
|
type:type,
|
|
|
|
|
|
label:label,
|
2020-11-17 16:41:52 +08:00
|
|
|
|
disabled:disabled,
|
|
|
|
|
|
readonly
|
2019-12-20 17:18:30 +08:00
|
|
|
|
});
|
2020-03-23 21:46:19 +08:00
|
|
|
|
this.change_sreach_show = false;
|
|
|
|
|
|
this.sreach_num = this.select_list.length-1;
|
|
|
|
|
|
this.input_list = !this.input_list;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(id!==6&&id!==28){
|
|
|
|
|
|
setTimeout("document.getElementById(\"sreach_input\").focus()", 500);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
var _this = this
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
|
_this.getHeight()
|
|
|
|
|
|
},)
|
|
|
|
|
|
|
2020-03-23 21:46:19 +08:00
|
|
|
|
// console.info(e.target.parentElement.parentElement.parentElement.getBoundingClientRect());
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
/*计算select弹框的位置*/
|
|
|
|
|
|
getSelectPosition(e) {
|
|
|
|
|
|
let inputListDom = this.getDomFromParents(e.target, 'input-center-box', 0);
|
|
|
|
|
|
if (inputListDom) {
|
2020-09-08 19:02:59 +08:00
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
if (this.inTransform) {
|
|
|
|
|
|
//this.selectDom.top = "36px";
|
|
|
|
|
|
} else {
|
|
|
|
|
|
let position = inputListDom.getBoundingClientRect();
|
|
|
|
|
|
this.selectDom.top = position.top+36+'px';
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2020-03-23 21:46:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
/*递归向上获取指定class的dom*/
|
|
|
|
|
|
getDomFromParents(dom, className, level) {
|
|
|
|
|
|
let parentClassNames = dom.parentElement.className;
|
|
|
|
|
|
if (parentClassNames.indexOf(className) == -1) {
|
|
|
|
|
|
if (level < 20 && dom.parentElement) { //限制20层,避免溢出
|
|
|
|
|
|
return this.getDomFromParents(dom.parentElement, className, ++level);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return dom.parentElement;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
// 判断输入框的高度
|
|
|
|
|
|
getHeight(){
|
|
|
|
|
|
if(document.getElementById('search-ul').clientHeight<24||document.getElementById('input-center-box').clientHeight<24){
|
2020-01-16 18:11:15 +08:00
|
|
|
|
document.getElementById('input-center-box').style.height = 27+'px'
|
|
|
|
|
|
document.getElementById('search-ul').style.height = 21+"px"
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
chlick_sreach(e) {
|
|
|
|
|
|
this.stop_click(e)
|
2019-12-17 17:17:30 +08:00
|
|
|
|
this.searchMsg.zheze_none = false
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
// 时间计划
|
|
|
|
|
|
schelistget(){
|
|
|
|
|
|
this.schlist = []
|
|
|
|
|
|
this.$get("/schedule", this.schedata).then(data => {
|
|
|
|
|
|
if (data.code == 200) {
|
|
|
|
|
|
this.schlist = data.data.list
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
},
|
2020-09-08 19:02:59 +08:00
|
|
|
|
close_search(e) {
|
|
|
|
|
|
this.selectDom.show = false;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2019-12-16 17:14:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
2020-10-14 10:25:56 +08:00
|
|
|
|
if(this.position){
|
|
|
|
|
|
this.where=this.$route.path + this.position
|
|
|
|
|
|
}
|
2020-03-31 17:22:15 +08:00
|
|
|
|
/*this.defaultItem ? this.select_list.push({name:this.defaultItem,label:this.defaultItem}) : '';
|
|
|
|
|
|
this.defaultValue != '' ? this.no_condition=this.defaultValue:'';*/
|
2020-04-21 22:39:07 +08:00
|
|
|
|
this.restructure_historyDate();
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
if(this.$route.path=='/Objects_Objects'){
|
|
|
|
|
|
this.schelistget();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.$route.path == '/promServer') {
|
|
|
|
|
|
this.getDcData();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.$route.path == '/project' || this.$route.path == '/alertList' || this.$route.path == '/alertConfig') {
|
|
|
|
|
|
this.getAssetData();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.$route.path == '/alertList') {
|
|
|
|
|
|
this.getProjectData();
|
|
|
|
|
|
this.getModuleData();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.$route.path == '/asset') {
|
|
|
|
|
|
this.getModelData();
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 1000);
|
2019-12-17 17:17:30 +08:00
|
|
|
|
JSON.parse(JSON.stringify(this.searchMsg.searchLabelList)).forEach(val => {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
if(val.name=='Protocol'){
|
|
|
|
|
|
this.schemaTypeSelect=val.doc.data
|
|
|
|
|
|
}
|
|
|
|
|
|
if(val.prop=='common_action'){
|
|
|
|
|
|
this.actionSelect=val.doc.data
|
|
|
|
|
|
}
|
|
|
|
|
|
this.actionSelect.forEach((item)=>{
|
|
|
|
|
|
item.id=item.code;
|
|
|
|
|
|
item.label=val.label;
|
|
|
|
|
|
item.name=val.label;
|
2019-12-17 17:17:30 +08:00
|
|
|
|
});
|
|
|
|
|
|
this.searchLabelList.push(val);
|
|
|
|
|
|
});
|
|
|
|
|
|
var _this = this;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
document.onkeydown=function(event) {
|
|
|
|
|
|
var e = event || window.event || arguments.callee.caller.arguments[0];
|
|
|
|
|
|
if(e.keyCode==27){
|
|
|
|
|
|
_this.close_search(e)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2020-02-03 21:30:07 +08:00
|
|
|
|
<style scoped lang="scss">
|
2019-12-16 17:14:58 +08:00
|
|
|
|
|
|
|
|
|
|
.new-search{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
position: relative;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
line-height: 25px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
border: 1px solid #D8D8D8;
|
|
|
|
|
|
/*box-shadow: inset 0 0 5px 0 rgba(184,184,184,0.80);*/
|
|
|
|
|
|
}
|
|
|
|
|
|
.new-search .nz-btn {
|
|
|
|
|
|
box-shadow: 0 0 1px 1px #d8d8d8;
|
|
|
|
|
|
border-radius: 0 4px 4px 0;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
.new-search .search-input-all{
|
2020-04-09 21:09:18 +08:00
|
|
|
|
width: 231px !important;
|
|
|
|
|
|
min-width: 231px;
|
2020-02-03 21:30:07 +08:00
|
|
|
|
background-color: $content-right-background-color;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
color: rgba(0,0,0,.55);
|
2020-01-17 10:02:17 +08:00
|
|
|
|
height: 24px;
|
|
|
|
|
|
line-height: 24px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
2020-02-03 21:30:07 +08:00
|
|
|
|
input {
|
|
|
|
|
|
background-color: $content-right-background-color;
|
|
|
|
|
|
}
|
2019-12-16 17:14:58 +08:00
|
|
|
|
.search-input-all .btn-retract{
|
|
|
|
|
|
padding: 0px 4px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.search-input-all .search-history{
|
2020-01-16 18:11:15 +08:00
|
|
|
|
padding: 0px 7px;
|
2020-01-20 12:16:44 +08:00
|
|
|
|
height: 16px;
|
|
|
|
|
|
line-height: 16px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
border-right: 1px solid #e5e5e5;
|
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.search-input-all .input-center-box{
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
height: 100%;
|
2020-03-17 19:43:18 +08:00
|
|
|
|
overflow: hidden;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
2020-03-17 19:43:18 +08:00
|
|
|
|
/*.input-center-box::-webkit-scrollbar {
|
|
|
|
|
|
width: 4px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
height: 6px;
|
|
|
|
|
|
}
|
2020-03-17 19:43:18 +08:00
|
|
|
|
.input-center-box::-webkit-scrollbar-thumb {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
|
|
|
|
background: rgba(0,0,0,0.2);
|
|
|
|
|
|
}
|
2020-03-17 19:43:18 +08:00
|
|
|
|
.input-center-box::-webkit-scrollbar-track {
|
2019-12-16 17:14:58 +08:00
|
|
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
background: rgba(0,0,0,0.1);
|
2020-03-17 19:43:18 +08:00
|
|
|
|
}*/
|
2019-12-16 17:14:58 +08:00
|
|
|
|
.search-input-all .clear-search{
|
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
|
text-align: center;
|
2019-12-17 17:17:30 +08:00
|
|
|
|
font-size: 12px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
.dataBackG{
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.none{
|
|
|
|
|
|
display: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.new-search-btn {
|
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.search-text{
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_box{
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 80%;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
height: 25px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
margin: 200px auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
.keyring_sreach_right_btn{
|
|
|
|
|
|
width: 18%;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
height: 25px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
float: right;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
line-height: 25px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
border: 1px solid #dfdfdf;
|
|
|
|
|
|
}
|
|
|
|
|
|
.keyring_sreach_right_btn .right-btn-group{
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
border-right: 1px solid #dfdfdf;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
}
|
|
|
|
|
|
.keyring_sreach_right_btn .right-btn-icon{
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
width: 19%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_box .close_zhezhao{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
top: -50px;
|
|
|
|
|
|
width: 24px;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
height: 25px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.localStorage_list_box{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 10px;
|
|
|
|
|
|
top: 36px;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
min-width:250px;
|
|
|
|
|
|
max-width: 350px;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
border: 1px solid #dfdfdf;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
color: #2e2e2e;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box .list_box_title{
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
|
|
color: #2e2e2e;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box .list_box_title i{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 10px;
|
2020-09-25 14:50:30 +08:00
|
|
|
|
top: 0px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box .list_box_content{
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
border-bottom: 1px solid #dfdfdf;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box ul li{
|
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box ul li:hover{
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.localStorage_list_box ul li span{
|
|
|
|
|
|
color: #2e2e2e;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box ul li .value{
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box .list_box_clear{
|
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.localStorage_list_box .list_box_clear:hover{
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.input-center-box .sreach_fixe_left{
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
min-width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_list{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content:flex-start;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_fixe_left .selectinfo_box{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
margin: 3px 2px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.selectinfo_box .select_condition{
|
|
|
|
|
|
float:left;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
height: 13px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
padding: 3px;
|
|
|
|
|
|
background:#f8f8f8;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
line-height: 13px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
color: rgba(0,0,0,.55);
|
|
|
|
|
|
}
|
|
|
|
|
|
.selectinfo_box .select_content{
|
|
|
|
|
|
float: left;
|
2020-01-16 18:11:15 +08:00
|
|
|
|
line-height: 13px;
|
|
|
|
|
|
height: 13px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
padding: 3px;
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
color: rgba(0,0,0,0.85);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
2020-09-11 10:04:56 +08:00
|
|
|
|
.selectinfo_box .select_content .nz-icon-close{
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
2020-04-20 21:27:32 +08:00
|
|
|
|
.selectinfo_box .select_content>span {
|
|
|
|
|
|
max-width: 100px;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
2019-12-16 17:14:58 +08:00
|
|
|
|
.select_input{
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
float: left;
|
2020-04-09 21:09:18 +08:00
|
|
|
|
width: 100px;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
.select_input input{
|
2020-03-17 19:01:09 +08:00
|
|
|
|
width: calc(100% - 1px);
|
2019-12-16 17:14:58 +08:00
|
|
|
|
height: 100%;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
padding-left: 5px !important;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
}
|
|
|
|
|
|
.select_input input:focus {
|
|
|
|
|
|
border:none;
|
|
|
|
|
|
box-shadow:none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.select_input .select_info_list{
|
2020-03-23 21:46:19 +08:00
|
|
|
|
position: fixed;
|
|
|
|
|
|
/*left: 100px;
|
|
|
|
|
|
top: 36px;*/
|
2019-12-16 17:14:58 +08:00
|
|
|
|
width: auto;
|
|
|
|
|
|
max-height: 240px;
|
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
z-index: 9999;
|
2020-09-08 19:02:59 +08:00
|
|
|
|
/*right: 139px;*/
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
.select_info_list ul li{
|
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
|
line-height: 20px;
|
2020-04-20 21:27:32 +08:00
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
width: 150px;
|
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
overflow: hidden;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
.select_info_list ul li:hover{
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_input .input{
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
padding-left: 10px !important;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_input .input input{
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_box input:focus {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_input input::placeholder{
|
|
|
|
|
|
color: rgba(0,0,0,0.55)
|
|
|
|
|
|
}
|
|
|
|
|
|
.input_list{
|
2020-03-23 21:46:19 +08:00
|
|
|
|
position: fixed;
|
|
|
|
|
|
/*left: 47px;
|
|
|
|
|
|
top: 36px;*/
|
2019-12-16 17:14:58 +08:00
|
|
|
|
width: auto;
|
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
|
max-height: 240px;
|
|
|
|
|
|
min-width: 300px;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
2020-11-21 17:56:33 +08:00
|
|
|
|
z-index: 101;
|
2019-12-16 17:14:58 +08:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.input_list ul{
|
|
|
|
|
|
padding: 4px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.input_list ul li{
|
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.input_list ul li:hover{
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.search-style-ind{
|
|
|
|
|
|
background: #f0f0f0;
|
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
.sreach_fixe>i{
|
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.is-disabled{
|
|
|
|
|
|
color: #C0C4CC;
|
|
|
|
|
|
cursor: not-allowed !important;
|
|
|
|
|
|
background: #fff !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
li {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|