From 18a49bb53ecfbd47d9a6e33a1fd7a82fafca4ff7 Mon Sep 17 00:00:00 2001
From: ZZJ <zzjdsg2300@163.com>
Date: 星期一, 22 十一月 2021 16:27:31 +0800
Subject: [PATCH] v0
---
src/pages/syslog/views/eventPushLog.vue | 168 ++++++++++++++++++++++++++++++++++++++++++++++++-------
1 files changed, 146 insertions(+), 22 deletions(-)
diff --git a/src/pages/syslog/views/eventPushLog.vue b/src/pages/syslog/views/eventPushLog.vue
index 1807b80..6cbeea0 100644
--- a/src/pages/syslog/views/eventPushLog.vue
+++ b/src/pages/syslog/views/eventPushLog.vue
@@ -23,12 +23,30 @@
v-model="fuzzySearch"
size="small"
class="input-with-select"
+ @keyup.enter.native="getOperationLog(1)"
>
- <el-button
+ <span
+ class="icon iconfont icon_clear"
+ @click="clearSearch"
+ slot="append"
+ v-if="fuzzySearch"
+ >
+ 
+ </span>
+ <span
+ class="icon iconfont icon_search"
+ @click="getOperationLog(1)"
+ slot="append"
+ v-else
+ >
+ 
+ </span>
+
+ <!-- <el-button
slot="append"
icon="el-icon-search"
@click="getOperationLog(1)"
- ></el-button>
+ ></el-button> -->
</el-input>
</div>
</div>
@@ -44,8 +62,8 @@
>
<el-option label="鍏ㄩ儴" :value="''"> </el-option>
<el-option
- v-for="item in levelOptions"
- :key="item.proc_name"
+ v-for="(item, i) in levelOptions"
+ :key="i"
:label="item.proc_name"
:value="item.proc_name"
>
@@ -65,7 +83,11 @@
:header-cell-style="{ background: '#f8f8f8', color: '#222222' }"
style="width: 100%"
v-if="!showSubTable"
+ border
>
+ <template slot="empty">
+ <img :src="png1" class="empty_img" alt="" />
+ </template>
<el-table-column :align="'center'" label="搴忓彿" type="index" width="50">
</el-table-column>
<el-table-column
@@ -100,14 +122,13 @@
<el-table-column
:align="'center'"
prop="msg"
- min-width="100px"
label="澶辫触鎬婚噺"
></el-table-column>
</el-table>
<div class="back" v-if="showSubTable" @click="showSubTable = false">
<span class="icon iconfont"></span>
- <span class="title">浜嬩欢鎺ㄩ�佹棩蹇�</span>
+ <span class="title" style="color: #4e94ff">浜嬩欢鎺ㄩ�佹棩蹇�</span>
</div>
<el-table
class="tableBox"
@@ -118,7 +139,11 @@
:header-cell-style="{ background: '#f8f8f8', color: '#222222' }"
style="width: 100%"
v-if="showSubTable"
+ border
>
+ <template slot="empty">
+ <img :src="png2" class="empty_img2" alt="" />
+ </template>
<el-table-column :align="'center'" label="搴忓彿" type="index" width="50">
</el-table-column>
<el-table-column
@@ -169,11 +194,13 @@
<script>
import { deleteDate } from "@/api/system";
import { pad0 } from "@/api/utils";
-import {} from "@/api/log";
+import { getModules } from "@/api/log";
export default {
data() {
return {
+ png1: "",
+ png2: require("../../../../public/images/syslog/娌℃暟鎹�.png"),
loading: false,
loadingText: "",
showSubTable: false,
@@ -244,6 +271,7 @@
getOptions() {
getModules().then((res) => {
this.levelOptions = res.data;
+ this.png1 = require("../../../../public/images/syslog/娌℃暟鎹�.png");
});
},
clickFaults(row, column, cell, event) {
@@ -304,6 +332,10 @@
this.timeStart = this.getTimeStr(preDay);
this.timeEnd = this.getTimeStr(date);
},
+ clearSearch() {
+ this.fuzzySearch = "";
+ this.getOperationLog(1);
+ },
},
};
</script>
@@ -318,14 +350,15 @@
flex-direction: column;
overflow: auto;
.top {
- height: 100px;
+ height: 132px;
background: #fff;
border-radius: 5px;
.first {
display: flex;
justify-content: space-between;
+ align-items: center;
height: 45px;
- padding: 0 20px;
+ padding: 20px 20px 0 20px;
.time-option {
display: flex;
justify-content: space-between;
@@ -333,52 +366,107 @@
.title {
margin-right: 10px;
min-width: fit-content;
- font-size: 14px;
+ font-weight: bold;
+ font-size: 12px;
}
.opts {
display: flex;
justify-content: space-between;
.opt {
+ box-sizing: border-box;
+ border: 2px solid #efeff6;
min-width: fit-content;
- width: 50px;
- height: 32px;
+ width: 100px;
+ height: 36px;
padding: 0 15px;
border-radius: 4px;
cursor: pointer;
- margin-right: 10px;
+ margin-right: 2px;
line-height: 32px;
- font-size: 14px;
+ font-size: 12px;
+ color: #333;
}
.opt:hover {
- background-color: rgba(61, 104, 225, 1);
- color: #fff;
+ border-color: #4e94ff;
}
.opt-active {
color: #fff;
- background-color: rgba(61, 104, 225, 1);
+ background-color: #4e94ff;
+ border-color: #4e94ff;
}
}
}
.search {
+ width: 280px;
+ height: 36px;
display: flex;
align-items: center;
+
+ .input-with-select {
+ width: 100%;
+ height: 100%;
+
+ input {
+ height: 100%;
+ border-radius: 18px 0 0 18px;
+ border: 2px solid #f2f2f7;
+ border-right: none;
+
+ &:focus,
+ &:focus + .el-input-group__append {
+ border-color: #409eff;
+ }
+ }
+
+ .el-input-group__append {
+ transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
+ background-color: #fff;
+ border: 2px solid #f2f2f7;
+ border-radius: 0 18px 18px 0;
+ border-left: none;
+ }
+ }
+
+ span {
+ cursor: pointer;
+ color: rgb(47, 45, 61);
+ font-weight: 700;
+ font-size: 19px;
+ }
}
}
.second {
display: flex;
- margin: 10px 0;
+ margin: 15px 0 20px 0;
padding: 0 20px;
-
.bar {
display: flex;
align-items: baseline;
width: fit-content;
- margin-right: 20px;
+ margin-right: 30px;
min-width: 120px;
+
+ .el-select {
+ width: 200px;
+ height: 36px;
+
+ .el-input {
+ width: 100%;
+ height: 100%;
+
+ input {
+ width: 100%;
+ height: 100%;
+ border: 2px solid #f2f2f7;
+ border-radius: 20px;
+ }
+ }
+ }
.name {
- margin-right: 5px;
+ margin-right: 15px;
min-width: fit-content;
- font-size: 14px;
+ font-weight: bold;
+ font-size: 12px;
}
}
}
@@ -388,6 +476,14 @@
border-radius: 5px;
padding: 12px;
background-color: white;
+ .empty_img {
+ margin: 80px auto;
+ width: 164px;
+ }
+ .empty_img2 {
+ margin: 50px auto;
+ width: 164px;
+ }
.back {
display: flex;
align-items: center;
@@ -403,15 +499,43 @@
}
}
.tableBox {
+ border: none;
+ &::before,
+ &::after {
+ display: none;
+ }
+
+ tr {
+ td:first-child {
+ border-radius: 4px 0 0 4px;
+ }
+ td:last-child {
+ border-radius: 0 4px 4px 0;
+ }
+ &.current-row td {
+ background-color: #4e94ff !important;
+ color: #fff;
+ }
+ &:hover td {
+ background-color: rgb(242, 242, 247);
+ }
+ }
th {
padding: 0 !important;
height: 40px;
line-height: 40px;
+ border-color: #fff !important;
+ border-right: 2px solid #fff;
+ border-radius: 4px;
+ font-size: 12px;
+ background: #f2f2f7;
}
td {
padding: 0 !important;
height: 34px;
line-height: 34px;
+ border: none;
+ font-size: 12px;
}
}
}
--
Gitblit v1.8.0