|
@@ -12,55 +12,34 @@
|
|
|
<div class="title">个人日志</div>
|
|
|
<div class="search flex-wrap">
|
|
|
<div class="j-date">
|
|
|
- <el-date-picker
|
|
|
- v-model="value1"
|
|
|
- size="small"
|
|
|
- @change="pickerChange"
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
- class="j-date-input"
|
|
|
- type="datetimerange"
|
|
|
- range-separator="至"
|
|
|
- start-placeholder="开始日期"
|
|
|
- end-placeholder="结束日期"
|
|
|
- >
|
|
|
+ <el-date-picker v-model="value1" size="small" @change="pickerChange" value-format="yyyy-MM-dd HH:mm:ss" class="j-date-input" type="datetimerange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
- <Search
|
|
|
- @getSearchData="getSearchData"
|
|
|
- @clearSearchData="clearSearch"
|
|
|
- :isTitle="false"
|
|
|
- :isSlot="false"
|
|
|
- />
|
|
|
+ <Search @getSearchData="getSearchData" @clearSearchData="clearSearch" :isTitle="false" :isSlot="false" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="journal-content">
|
|
|
- <el-table
|
|
|
- :data="tableData"
|
|
|
- :row-class-name="tableRowClassName"
|
|
|
- class="table scrollbar"
|
|
|
- height="450"
|
|
|
- style="width: 100%"
|
|
|
- >
|
|
|
+ <el-table :data="tableData" :row-class-name="tableRowClassName" class="table scrollbar" height="450" style="width: 100%">
|
|
|
<el-table-column label="应用名称">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{ scope.row.AppName ? scope.row.AppName : "暂无数据" }}</div>
|
|
|
+ <div :class="scope.row.isSocket ? 'red' : ''">{{ scope.row.AppName ? scope.row.AppName : "暂无数据" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="IP">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>
|
|
|
+ <div :class="scope.row.isSocket ? 'red' : ''">
|
|
|
{{ scope.row.OperateIP ? scope.row.OperateIP : "暂无数据" }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="内容">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{ scope.row.Msg ? scope.row.Msg : "暂无数据" }}</div>
|
|
|
+ <div :class="scope.row.isSocket ? 'red' : ''">{{ scope.row.Msg ? scope.row.Msg : "暂无数据" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="结果">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>
|
|
|
+ <div :class="scope.row.isSocket ? 'red' : ''">
|
|
|
{{
|
|
|
scope.row.OperateResult ? scope.row.OperateResult : "暂无数据"
|
|
|
}}
|
|
@@ -69,7 +48,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="日志时间">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>
|
|
|
+ <div :class="scope.row.isSocket ? 'red' : ''">
|
|
|
{{ scope.row.BeginTime ? scope.row.BeginTime : "暂无数据" }}
|
|
|
</div>
|
|
|
</template>
|
|
@@ -86,9 +65,10 @@ import { parseTime } from "@/utils/index";
|
|
|
export default {
|
|
|
name: "Journal",
|
|
|
components: { Search },
|
|
|
- data() {
|
|
|
+ data () {
|
|
|
return {
|
|
|
tableData: [],
|
|
|
+ tableCopy: [],
|
|
|
value1: [
|
|
|
parseTime(new Date(), "{y}-{m}-{d} 00:00:00"),
|
|
|
parseTime(
|
|
@@ -101,7 +81,16 @@ export default {
|
|
|
EndTime: "",
|
|
|
};
|
|
|
},
|
|
|
- created() {
|
|
|
+ watch: {
|
|
|
+ "$store.state.app.wsData": {
|
|
|
+ handler (arr) {
|
|
|
+ const datas = arr.concat(this.tableCopy);
|
|
|
+ this.tableData = datas;
|
|
|
+ },
|
|
|
+ deep: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ created () {
|
|
|
this.getLogList({
|
|
|
Msg: "",
|
|
|
BeginTime: "",
|
|
@@ -109,18 +98,20 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
- tableRowClassName({ row, rowIndex }) {
|
|
|
+ tableRowClassName ({ row, rowIndex }) {
|
|
|
if (rowIndex % 2 === 0) {
|
|
|
return "warning-row";
|
|
|
} else {
|
|
|
return "success-row";
|
|
|
}
|
|
|
},
|
|
|
- async getLogList(params) {
|
|
|
+ async getLogList (params) {
|
|
|
try {
|
|
|
const res = await GetLogList(params);
|
|
|
if (res.code == 0) {
|
|
|
- this.tableData = res.returnData;
|
|
|
+ const datas = this.$store.state.app.wsData
|
|
|
+ this.tableData = datas.concat(res.returnData);
|
|
|
+ this.tableCopy = res.returnData;
|
|
|
} else {
|
|
|
this.tableData = [];
|
|
|
this.$message.error(res.message);
|
|
@@ -129,7 +120,7 @@ export default {
|
|
|
console.log(error);
|
|
|
}
|
|
|
},
|
|
|
- getSearchData(val) {
|
|
|
+ getSearchData (val) {
|
|
|
const dates = this.value1;
|
|
|
if (dates && dates.length) {
|
|
|
this.BeginTime = dates[0];
|
|
@@ -142,14 +133,14 @@ export default {
|
|
|
EndTime: this.EndTime,
|
|
|
});
|
|
|
},
|
|
|
- clearSearch() {
|
|
|
+ clearSearch () {
|
|
|
this.getLogList({
|
|
|
Msg: "",
|
|
|
BeginTime: this.BeginTime,
|
|
|
EndTime: this.EndTime,
|
|
|
});
|
|
|
},
|
|
|
- pickerChange(val) {
|
|
|
+ pickerChange (val) {
|
|
|
if (val) {
|
|
|
if (val && val.length) {
|
|
|
this.BeginTime = val[0];
|
|
@@ -247,6 +238,9 @@ export default {
|
|
|
border-radius: 2px;
|
|
|
}
|
|
|
}
|
|
|
+ .red {
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|