|
@@ -1,309 +1,336 @@
|
|
|
<template>
|
|
|
- <div class="logBox">
|
|
|
- <div class="border_left_top border"></div>
|
|
|
- <div class="border_top border"></div>
|
|
|
- <div class="border_right_top border"></div>
|
|
|
- <div class="border_left border"></div>
|
|
|
- <div class="border_right border"></div>
|
|
|
- <div class="border_left_bottom border"></div>
|
|
|
- <div class="border_bottom border"></div>
|
|
|
- <div class="border_right_bottom border"></div>
|
|
|
- <el-button-group id="topButton2">
|
|
|
- <el-button type="primary" @click="goTo">当前</el-button>
|
|
|
- <el-button type="primary" class="active">历史</el-button>
|
|
|
- </el-button-group>
|
|
|
- <div class="downlodTable" @click="downlodTable">导出</div>
|
|
|
- <el-table :data="tableData" style="width: 100%;color: #2DAFF5;height: 720px;overflow-y: auto;">
|
|
|
- <el-table-column prop="error_code" align="center" label="Alarm ID" width="180">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="error_reason" align="center" label="报警内容">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="equ_name" align="center" label="报警模块">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="alarm_date" align="center" label="报警时间">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="deal_date" align="center" label="恢复时间">
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- </div>
|
|
|
+ <div class="logBox">
|
|
|
+ <div class="border_left_top border"></div>
|
|
|
+ <div class="border_top border"></div>
|
|
|
+ <div class="border_right_top border"></div>
|
|
|
+ <div class="border_left border"></div>
|
|
|
+ <div class="border_right border"></div>
|
|
|
+ <div class="border_left_bottom border"></div>
|
|
|
+ <div class="border_bottom border"></div>
|
|
|
+ <div class="border_right_bottom border"></div>
|
|
|
+ <el-button-group id="topButton2">
|
|
|
+ <el-button type="primary" @click="goTo">当前</el-button>
|
|
|
+ <el-button type="primary" class="active">历史</el-button>
|
|
|
+ </el-button-group>
|
|
|
+ <div class="downlodTable" @click="downlodTable">导出</div>
|
|
|
+ <el-table
|
|
|
+ :data="tableData"
|
|
|
+ style="width: 100%; color: #2daff5; height: 720px; overflow-y: auto"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ prop="error_code"
|
|
|
+ align="center"
|
|
|
+ label="Alarm ID"
|
|
|
+ width="180"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="error_reason" align="center" label="报警内容">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="equ_name" align="center" label="报警模块">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="alarm_date" align="center" label="报警时间">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="deal_date" align="center" label="恢复时间">
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
- Dbalarm
|
|
|
- } from '../../../api/request.js'
|
|
|
- import FileSaver from "file-saver";
|
|
|
- import XLSX from "xlsx";
|
|
|
- export default {
|
|
|
- name: "History",
|
|
|
- data() {
|
|
|
- return {
|
|
|
- sj: null,
|
|
|
- reqData: {
|
|
|
- ctg: "his",
|
|
|
- opt: 'nonexcel'
|
|
|
- },
|
|
|
- tableData: [{
|
|
|
- "id": 7,
|
|
|
- "error_code": "C04",
|
|
|
- "equ_name": "输送机",
|
|
|
- "error_name": "C04_Status.Emergency_Stop",
|
|
|
- "error_reason": "C04急停",
|
|
|
- "error_solve": "检查电控柜急停按钮",
|
|
|
- "alarm_date": "/Date(1603778585000)/",
|
|
|
- "if_deal": 1,
|
|
|
- "deal_man": "系统",
|
|
|
- "deal_date": "/Date(1603848495000)/"
|
|
|
- }]
|
|
|
- }
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.getData()
|
|
|
- },
|
|
|
- mounted(){
|
|
|
- clearInterval(this.sj)
|
|
|
- let that = this;
|
|
|
- this.sj = setInterval(function() {
|
|
|
- that.getData()
|
|
|
- }, 3000)
|
|
|
- },
|
|
|
- beforeRouteLeave(to, from, next){
|
|
|
- next();
|
|
|
- if (this.sj) {
|
|
|
- clearInterval(this.sj)
|
|
|
- this.sj = null;
|
|
|
- }
|
|
|
- },
|
|
|
- methods: {
|
|
|
- getData() {
|
|
|
- Dbalarm(this.reqData).then(res => {
|
|
|
- console.log(res.AlarmInfo)
|
|
|
- this.tableData = res.AlarmInfo
|
|
|
- // console.log(this.timeFor(this.tableData[0].alarm_date))
|
|
|
- for (let index in this.tableData) {
|
|
|
- this.tableData[index].alarm_date = this.timeFor(this.tableData[index].alarm_date)
|
|
|
- this.tableData[index].deal_date = this.timeFor(this.tableData[index].deal_date)
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
- timeFor(dateA) { //转换时间戳
|
|
|
- var timestamp = dateA;
|
|
|
- var date = new Date(parseInt(timestamp.replace("/Date(", "").replace(")/", ""), 10));
|
|
|
- let Y = date.getFullYear() + '-';
|
|
|
- let M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
|
|
|
- let D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate()) + ' ';
|
|
|
- let h = (date.getHours() < 10 ? '0' + (date.getHours()) : date.getHours()) + ':';
|
|
|
- let m = (date.getMinutes() < 10 ? '0' + (date.getMinutes()) : date.getMinutes()) + ':';
|
|
|
- let s = (date.getSeconds() < 10 ? '0' + (date.getSeconds()) : date.getSeconds());
|
|
|
- var NewDtime = Y + M + D + h + m + s;
|
|
|
- return NewDtime;
|
|
|
- },
|
|
|
- downlodTable() {
|
|
|
- this.$confirm('是否需要导出xlsx文档, 是否继续?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning'
|
|
|
- }).then(() => {
|
|
|
- this.downFile();
|
|
|
- this.$message({
|
|
|
- type: 'success',
|
|
|
- message: '导出成功!'
|
|
|
- });
|
|
|
- }).catch(() => {
|
|
|
- this.$message({
|
|
|
- type: 'info',
|
|
|
- message: '已取消导出'
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- },
|
|
|
- downFile() {
|
|
|
- var wb = XLSX.utils.table_to_book(document.querySelector("#userTableData"));
|
|
|
- var wbout = XLSX.write(wb, {
|
|
|
- bookType: "xlsx",
|
|
|
- bookSST: true,
|
|
|
- type: "array"
|
|
|
- });
|
|
|
- try {
|
|
|
- FileSaver.saveAs(
|
|
|
- new Blob([wbout], {
|
|
|
- type: "application/octet-stream"
|
|
|
- }),
|
|
|
- "报警统计.xlsx"
|
|
|
- );
|
|
|
- } catch (e) {
|
|
|
- if (typeof console !== "undefined") console.log(e, wbout);
|
|
|
- }
|
|
|
- return wbout;
|
|
|
- },
|
|
|
- goTo() {
|
|
|
- this.$router.push("/Alarm/RealTime");
|
|
|
- },
|
|
|
- //设置指定行、列、具体单元格颜色
|
|
|
- cellStyle({
|
|
|
- row,
|
|
|
- column,
|
|
|
- rowIndex,
|
|
|
- columnIndex
|
|
|
- }) {
|
|
|
- if (columnIndex === 0) { //指定坐标rowIndex :行,columnIndex :列
|
|
|
- return 'background:#103366' //rgb(105,0,7)
|
|
|
- } else {
|
|
|
- return ''
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+import { Dbalarm } from "../../../api/request.js";
|
|
|
+import FileSaver from "file-saver";
|
|
|
+import XLSX from "xlsx";
|
|
|
+export default {
|
|
|
+ name: "History",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ sj: null,
|
|
|
+ reqData: {
|
|
|
+ ctg: "his",
|
|
|
+ opt: "nonexcel",
|
|
|
+ },
|
|
|
+ tableData: [
|
|
|
+ {
|
|
|
+ id: 7,
|
|
|
+ error_code: "C04",
|
|
|
+ equ_name: "输送机",
|
|
|
+ error_name: "C04_Status.Emergency_Stop",
|
|
|
+ error_reason: "C04急停",
|
|
|
+ error_solve: "检查电控柜急停按钮",
|
|
|
+ alarm_date: "/Date(1603778585000)/",
|
|
|
+ if_deal: 1,
|
|
|
+ deal_man: "系统",
|
|
|
+ deal_date: "/Date(1603848495000)/",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getData();
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ clearInterval(this.sj);
|
|
|
+ let that = this;
|
|
|
+ this.sj = setInterval(function () {
|
|
|
+ that.getData();
|
|
|
+ }, 3000);
|
|
|
+ },
|
|
|
+ beforeRouteLeave(to, from, next) {
|
|
|
+ next();
|
|
|
+ if (this.sj) {
|
|
|
+ clearInterval(this.sj);
|
|
|
+ this.sj = null;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getData() {
|
|
|
+ Dbalarm(this.reqData).then((res) => {
|
|
|
+ console.log(res.AlarmInfo);
|
|
|
+ this.tableData = res.AlarmInfo;
|
|
|
+ // console.log(this.timeFor(this.tableData[0].alarm_date))
|
|
|
+ for (let index in this.tableData) {
|
|
|
+ this.tableData[index].alarm_date = this.timeFor(
|
|
|
+ this.tableData[index].alarm_date
|
|
|
+ );
|
|
|
+ this.tableData[index].deal_date = this.timeFor(
|
|
|
+ this.tableData[index].deal_date
|
|
|
+ );
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ timeFor(dateA) {
|
|
|
+ //转换时间戳
|
|
|
+ var timestamp = dateA;
|
|
|
+ var date = new Date(
|
|
|
+ parseInt(timestamp.replace("/Date(", "").replace(")/", ""), 10)
|
|
|
+ );
|
|
|
+ let Y = date.getFullYear() + "-";
|
|
|
+ let M =
|
|
|
+ (date.getMonth() + 1 < 10
|
|
|
+ ? "0" + (date.getMonth() + 1)
|
|
|
+ : date.getMonth() + 1) + "-";
|
|
|
+ let D =
|
|
|
+ (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " ";
|
|
|
+ let h =
|
|
|
+ (date.getHours() < 10 ? "0" + date.getHours() : date.getHours()) + ":";
|
|
|
+ let m =
|
|
|
+ (date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes()) +
|
|
|
+ ":";
|
|
|
+ let s =
|
|
|
+ date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
|
|
|
+ var NewDtime = Y + M + D + h + m + s;
|
|
|
+ return NewDtime;
|
|
|
+ },
|
|
|
+ downlodTable() {
|
|
|
+ this.$confirm("是否需要导出xlsx文档, 是否继续?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.downFile();
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "导出成功!",
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: "info",
|
|
|
+ message: "已取消导出",
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ downFile() {
|
|
|
+ var wb = XLSX.utils.table_to_book(
|
|
|
+ document.querySelector("#userTableData")
|
|
|
+ );
|
|
|
+ var wbout = XLSX.write(wb, {
|
|
|
+ bookType: "xlsx",
|
|
|
+ bookSST: true,
|
|
|
+ type: "array",
|
|
|
+ });
|
|
|
+ try {
|
|
|
+ FileSaver.saveAs(
|
|
|
+ new Blob([wbout], {
|
|
|
+ type: "application/octet-stream",
|
|
|
+ }),
|
|
|
+ "报警统计.xlsx"
|
|
|
+ );
|
|
|
+ } catch (e) {
|
|
|
+ if (typeof console !== "undefined") console.log(e, wbout);
|
|
|
+ }
|
|
|
+ return wbout;
|
|
|
+ },
|
|
|
+ goTo() {
|
|
|
+ this.$router.push("/Alarm/RealTime");
|
|
|
+ },
|
|
|
+ //设置指定行、列、具体单元格颜色
|
|
|
+ cellStyle({ row, column, rowIndex, columnIndex }) {
|
|
|
+ if (columnIndex === 0) {
|
|
|
+ //指定坐标rowIndex :行,columnIndex :列
|
|
|
+ return "background:#103366"; //rgb(105,0,7)
|
|
|
+ } else {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
- .logBox {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- overflow: hidden;
|
|
|
- position: relative;
|
|
|
- padding: 4.0625rem 1.5rem 4.0625rem 2.5rem;
|
|
|
- box-sizing: border-box;
|
|
|
-
|
|
|
- // background: url(../../assets/img/border.png) no-repeat center center;
|
|
|
- // background-size: 100% 100%;
|
|
|
- .border {
|
|
|
- position: absolute;
|
|
|
- }
|
|
|
-
|
|
|
- .border_left_top {
|
|
|
- width: 12.625rem;
|
|
|
- height: 5.875rem;
|
|
|
- background: url(../../../assets/img/border.png);
|
|
|
- left: 1px;
|
|
|
- top: 1px;
|
|
|
- }
|
|
|
-
|
|
|
- .border_top {
|
|
|
- width: calc(100% - 12.625rem - 4.9375rem);
|
|
|
- height: 1.5rem;
|
|
|
- background: url(../../../assets/img/border_top.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- left: 12.625rem;
|
|
|
- top: 0;
|
|
|
- }
|
|
|
+.logBox {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+ padding: 4.0625rem 1.5rem 4.0625rem 2.5rem;
|
|
|
+ box-sizing: border-box;
|
|
|
+ /deep/.el-table {
|
|
|
+ background-color: rgba(0, 0, 0, 0) !important;
|
|
|
+ }
|
|
|
+ // background: url(../../assets/img/border.png) no-repeat center center;
|
|
|
+ // background-size: 100% 100%;
|
|
|
+ .border {
|
|
|
+ position: absolute;
|
|
|
+ }
|
|
|
|
|
|
- .border_right_top {
|
|
|
- width: 4.9375rem;
|
|
|
- height: 5.875rem;
|
|
|
- background: url(../../../assets/img/border_right_top.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- right: 0.0625rem;
|
|
|
- top: 0;
|
|
|
- }
|
|
|
+ .border_left_top {
|
|
|
+ width: 12.625rem;
|
|
|
+ height: 5.875rem;
|
|
|
+ background: url(../../../assets/img/border.png);
|
|
|
+ left: 1px;
|
|
|
+ top: 1px;
|
|
|
+ }
|
|
|
|
|
|
- .border_left {
|
|
|
- width: 1.375rem;
|
|
|
- height: calc(100% - 5.875rem - 7.625rem);
|
|
|
- background: url(../../../assets/img/border_left.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- left: 0;
|
|
|
- top: 5.875rem;
|
|
|
- }
|
|
|
+ .border_top {
|
|
|
+ width: calc(100% - 12.625rem - 4.9375rem);
|
|
|
+ height: 1.5rem;
|
|
|
+ background: url(../../../assets/img/border_top.png) no-repeat center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ left: 12.625rem;
|
|
|
+ top: 0;
|
|
|
+ }
|
|
|
+ .border_right_top {
|
|
|
+ width: 4.9375rem;
|
|
|
+ height: 5.875rem;
|
|
|
+ background: url(../../../assets/img/border_right_top.png) no-repeat center
|
|
|
+ center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ right: 0.0625rem;
|
|
|
+ top: 0;
|
|
|
+ }
|
|
|
|
|
|
- .border_right {
|
|
|
- width: 0.1875rem;
|
|
|
- height: calc(100% - 5.875rem - 7.6875rem);
|
|
|
- background: url(../../../assets/img/border_right.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- right: 0;
|
|
|
- top: 5.875rem;
|
|
|
- }
|
|
|
+ .border_left {
|
|
|
+ width: 1.375rem;
|
|
|
+ height: calc(100% - 5.875rem - 7.625rem);
|
|
|
+ background: url(../../../assets/img/border_left.png) no-repeat center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ left: 0;
|
|
|
+ top: 5.875rem;
|
|
|
+ }
|
|
|
|
|
|
- .border_left_bottom {
|
|
|
- width: 11.625rem;
|
|
|
- height: 7.625rem;
|
|
|
- background: url(../../../assets/img/border_left_bottom.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- left: 0;
|
|
|
- bottom: 0;
|
|
|
- }
|
|
|
+ .border_right {
|
|
|
+ width: 0.1875rem;
|
|
|
+ height: calc(100% - 5.875rem - 7.6875rem);
|
|
|
+ background: url(../../../assets/img/border_right.png) no-repeat center
|
|
|
+ center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ right: 0;
|
|
|
+ top: 5.875rem;
|
|
|
+ }
|
|
|
|
|
|
- .border_bottom {
|
|
|
- width: calc(100% - 11.625rem - 4.9375rem);
|
|
|
- height: 0.1875rem;
|
|
|
- background: url(../../../assets/img/border_bottom.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- left: 11.625rem;
|
|
|
- bottom: 0;
|
|
|
- }
|
|
|
+ .border_left_bottom {
|
|
|
+ width: 11.625rem;
|
|
|
+ height: 7.625rem;
|
|
|
+ background: url(../../../assets/img/border_left_bottom.png) no-repeat center
|
|
|
+ center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ }
|
|
|
|
|
|
- .border_right_bottom {
|
|
|
- width: 4.9375rem;
|
|
|
- height: 7.6875rem;
|
|
|
- background: url(../../../assets/img/border_right_bottom.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- }
|
|
|
+ .border_bottom {
|
|
|
+ width: calc(100% - 11.625rem - 4.9375rem);
|
|
|
+ height: 0.1875rem;
|
|
|
+ background: url(../../../assets/img/border_bottom.png) no-repeat center
|
|
|
+ center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ left: 11.625rem;
|
|
|
+ bottom: 0;
|
|
|
+ }
|
|
|
|
|
|
- #topButton2 {
|
|
|
- position: absolute;
|
|
|
- top: 8px;
|
|
|
- left: 8px;
|
|
|
- z-index: 1;
|
|
|
+ .border_right_bottom {
|
|
|
+ width: 4.9375rem;
|
|
|
+ height: 7.6875rem;
|
|
|
+ background: url(../../../assets/img/border_right_bottom.png) no-repeat
|
|
|
+ center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ }
|
|
|
|
|
|
- button:first-child {
|
|
|
- border: none;
|
|
|
- background: url(../../../assets/img/uncheck1.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- padding: 12px 50px 12px 35px;
|
|
|
- position: absolute;
|
|
|
- font-weight: bold;
|
|
|
- font-style: italic;
|
|
|
- color: #76899D;
|
|
|
- }
|
|
|
+ #topButton2 {
|
|
|
+ position: absolute;
|
|
|
+ top: 8px;
|
|
|
+ left: 8px;
|
|
|
+ z-index: 1;
|
|
|
|
|
|
- button:last-child {
|
|
|
- border: none;
|
|
|
- background: url(../../../assets/img/check2.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- padding: 12px 55px;
|
|
|
- position: absolute;
|
|
|
- left: 78px;
|
|
|
- font-weight: bold;
|
|
|
- font-style: italic;
|
|
|
- color: #76899D;
|
|
|
- }
|
|
|
+ button:first-child {
|
|
|
+ border: none;
|
|
|
+ background: url(../../../assets/img/uncheck1.png) no-repeat center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding: 12px 50px 12px 35px;
|
|
|
+ position: absolute;
|
|
|
+ font-weight: bold;
|
|
|
+ font-style: italic;
|
|
|
+ color: #76899d;
|
|
|
+ }
|
|
|
|
|
|
- .active {
|
|
|
- color: #fff !important;
|
|
|
- }
|
|
|
- }
|
|
|
+ button:last-child {
|
|
|
+ border: none;
|
|
|
+ background: url(../../../assets/img/check2.png) no-repeat center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ padding: 12px 55px;
|
|
|
+ position: absolute;
|
|
|
+ left: 78px;
|
|
|
+ font-weight: bold;
|
|
|
+ font-style: italic;
|
|
|
+ color: #76899d;
|
|
|
+ }
|
|
|
|
|
|
- .el-table::before {
|
|
|
- height: 0;
|
|
|
- }
|
|
|
+ .active {
|
|
|
+ color: #fff !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ .el-table::before {
|
|
|
+ height: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- .downlodTable {
|
|
|
- width: 50px;
|
|
|
- height: 30px;
|
|
|
- box-shadow: inset 0px 1px 38px 0px rgba(0, 162, 253, 0.4) !important;
|
|
|
- border: 1px solid rgba(1, 148, 228, 0.34) !important;
|
|
|
- background: none !important;
|
|
|
- float: right;
|
|
|
- position: absolute;
|
|
|
- top: 30px;
|
|
|
- right: 25px;
|
|
|
- color: #ddd;
|
|
|
- text-align: center;
|
|
|
- line-height: 30px;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
+.downlodTable {
|
|
|
+ width: 50px;
|
|
|
+ height: 30px;
|
|
|
+ box-shadow: inset 0px 1px 38px 0px rgba(0, 162, 253, 0.4) !important;
|
|
|
+ border: 1px solid rgba(1, 148, 228, 0.34) !important;
|
|
|
+ background: none !important;
|
|
|
+ float: right;
|
|
|
+ position: absolute;
|
|
|
+ top: 30px;
|
|
|
+ right: 25px;
|
|
|
+ color: #ddd;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 30px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
</style>
|
|
|
<style>
|
|
|
- .logBox .el-table th {
|
|
|
- background: #103366 !important;
|
|
|
- }
|
|
|
+.logBox .el-table th {
|
|
|
+ background: #103366 !important;
|
|
|
+}
|
|
|
|
|
|
- .logBox .el-table th>.cell {
|
|
|
- color: #0194E4 !important;
|
|
|
- }
|
|
|
+.logBox .el-table th > .cell {
|
|
|
+ color: #0194e4 !important;
|
|
|
+}
|
|
|
</style>
|