|
@@ -1,371 +1,422 @@
|
|
|
<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="topButton">
|
|
|
- <el-button type="primary" class="active">当前</el-button>
|
|
|
- <el-button type="primary" @click="goTo">历史</el-button>
|
|
|
- </el-button-group>
|
|
|
- <div class="downlodTable" @click="downlodTable">导出</div>
|
|
|
- <el-table :data="tableData" id="userTableData" style="width: 100%;color: #2DAFF5;;">
|
|
|
- <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-column prop="error_solve" 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="topButton">
|
|
|
+ <el-button type="primary" class="active">当前</el-button>
|
|
|
+ <el-button type="primary" @click="goTo">历史</el-button>
|
|
|
+ </el-button-group>
|
|
|
+ <div class="downlodTable" @click="downlodTable">导出</div>
|
|
|
+ <el-table
|
|
|
+ :data="tableData"
|
|
|
+ id="userTableData"
|
|
|
+ style="width: 100%; color: #2daff5"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ prop="error_position"
|
|
|
+ align="center"
|
|
|
+ label="报警位置"
|
|
|
+ width="180"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="error_content" align="center" label="报警内容">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="handle_method" align="center" label="处理方式">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="alarm_date" align="center" label="报警时间">
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination
|
|
|
+ @current-change="changePage"
|
|
|
+ @prev-click="changePage"
|
|
|
+ @next-click="changePage"
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :total="pageCount"
|
|
|
+ >
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
- Dbalarm,
|
|
|
- DbalarmTime
|
|
|
- } from '../../../api/request.js'
|
|
|
- import FileSaver from "file-saver";
|
|
|
- import XLSX from "xlsx";
|
|
|
- export default {
|
|
|
- name: "RealTime",
|
|
|
- data() {
|
|
|
- return {
|
|
|
- sj: null,
|
|
|
- reqData: {
|
|
|
- ctg: "curr",
|
|
|
- opt: 'nonexcel'
|
|
|
- },
|
|
|
- tableData: [{
|
|
|
- id: 4,
|
|
|
- error_code: "C03",
|
|
|
- equ_name: "输送机",
|
|
|
- error_reason: "C03_Status.Emergency_Stop",
|
|
|
- error_reason: "C03急停",
|
|
|
- error_solve: "检查电控柜急停按钮",
|
|
|
- alarm_date: "/Date(1603778413000)/",
|
|
|
- if_deal: 0,
|
|
|
- deal_man: null,
|
|
|
- deal_date: null
|
|
|
-
|
|
|
- }]
|
|
|
- }
|
|
|
- },
|
|
|
- created() {
|
|
|
- // this.DbalarmTimes()
|
|
|
- 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: {
|
|
|
- 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;
|
|
|
- },
|
|
|
- DbalarmTimes() {
|
|
|
- DbalarmTime().then(res => {
|
|
|
- console.log(res.AverageTime)
|
|
|
- let dataAry = {}
|
|
|
- res.AverageTime.forEach((item, index, arr) => {
|
|
|
- // console.log(arr[index].execute_vehicle_id)
|
|
|
- if (arr[index].execute_vehicle_id == 1) {
|
|
|
- this.timeTool(arr[index].done_time) - this.timeTool(arr[index].execute_time)
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
- timeTool(time) {
|
|
|
- return time.substring(time.indexOf('(') + 1, time.indexOf(')')) / 1000
|
|
|
- },
|
|
|
- getData() {
|
|
|
- Dbalarm(this.reqData).then(res => {
|
|
|
- console.log(res)
|
|
|
- console.log(res.AlarmInfo)
|
|
|
- this.tableData = res.AlarmInfo
|
|
|
- for (let index in this.tableData) {
|
|
|
- this.tableData[index].alarm_date = this.timeFor(this.tableData[index].alarm_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;
|
|
|
- },
|
|
|
- goTo() {
|
|
|
- this.$router.push("/Alarm/History");
|
|
|
- },
|
|
|
- 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"
|
|
|
- }),
|
|
|
- "Alarm.xlsx"
|
|
|
- );
|
|
|
- } catch (e) {
|
|
|
- if (typeof console !== "undefined") console.log(e, wbout);
|
|
|
- }
|
|
|
- return wbout;
|
|
|
- },
|
|
|
- //设置指定行、列、具体单元格颜色
|
|
|
- cellStyle({
|
|
|
- row,
|
|
|
- column,
|
|
|
- rowIndex,
|
|
|
- columnIndex
|
|
|
- }) {
|
|
|
- if (columnIndex === 0) { //指定坐标rowIndex :行,columnIndex :列
|
|
|
- return 'background:#103366' //rgb(105,0,7)
|
|
|
- } else {
|
|
|
- return ''
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+import {
|
|
|
+ Dbalarm,
|
|
|
+ DbalarmTime,
|
|
|
+ alarmInformationhos,
|
|
|
+} from "../../../api/request.js";
|
|
|
+import FileSaver from "file-saver";
|
|
|
+import XLSX from "xlsx";
|
|
|
+export default {
|
|
|
+ name: "RealTime",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ sj: null,
|
|
|
+ reqData: {
|
|
|
+ ctg: "curr",
|
|
|
+ opt: "nonexcel",
|
|
|
+ },
|
|
|
+ pageSize: 1,
|
|
|
+ pageSizes: 1,
|
|
|
+ pageCount: 0,
|
|
|
+ tableData: [
|
|
|
+ {
|
|
|
+ id: 4,
|
|
|
+ error_code: "C03",
|
|
|
+ equ_name: "输送机",
|
|
|
+ error_reason: "C03_Status.Emergency_Stop",
|
|
|
+ error_reason: "C03急停",
|
|
|
+ error_solve: "检查电控柜急停按钮",
|
|
|
+ alarm_date: "/Date(1603778413000)/",
|
|
|
+ if_deal: 0,
|
|
|
+ deal_man: null,
|
|
|
+ deal_date: null,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ // this.DbalarmTimes()
|
|
|
+ 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: {
|
|
|
+ changePage(e) {
|
|
|
+ this.pageSize = e;
|
|
|
+ this.getData();
|
|
|
+ },
|
|
|
+ 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;
|
|
|
+ },
|
|
|
+ DbalarmTimes() {
|
|
|
+ DbalarmTime().then((res) => {
|
|
|
+ console.log(res.AverageTime);
|
|
|
+ let dataAry = {};
|
|
|
+ res.AverageTime.forEach((item, index, arr) => {
|
|
|
+ // console.log(arr[index].execute_vehicle_id)
|
|
|
+ if (arr[index].execute_vehicle_id == 1) {
|
|
|
+ this.timeTool(arr[index].done_time) -
|
|
|
+ this.timeTool(arr[index].execute_time);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ timeTool(time) {
|
|
|
+ return time.substring(time.indexOf("(") + 1, time.indexOf(")")) / 1000;
|
|
|
+ },
|
|
|
+ getData() {
|
|
|
+ let params = {
|
|
|
+ value: false,
|
|
|
+ PageIndex: this.pageSize,
|
|
|
+ PageSize: 13,
|
|
|
+ };
|
|
|
+ alarmInformationhos(params).then((res) => {
|
|
|
+ this.tableData = res.resultData.result;
|
|
|
+ this.pageCount = res.pageNumber;
|
|
|
+ // for (let index in this.tableData) {
|
|
|
+ // this.tableData[index].alarm_date = this.timeFor(
|
|
|
+ // this.tableData[index].alarm_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;
|
|
|
+ },
|
|
|
+ goTo() {
|
|
|
+ this.$router.push("/Alarm/History");
|
|
|
+ },
|
|
|
+ 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",
|
|
|
+ }),
|
|
|
+ "Alarm.xlsx"
|
|
|
+ );
|
|
|
+ } catch (e) {
|
|
|
+ if (typeof console !== "undefined") console.log(e, wbout);
|
|
|
+ }
|
|
|
+ return wbout;
|
|
|
+ },
|
|
|
+ //设置指定行、列、具体单元格颜色
|
|
|
+ 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;
|
|
|
- overflow-y: auto;
|
|
|
- // 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;
|
|
|
- }
|
|
|
+/deep/.el-pagination {
|
|
|
+ z-index: 9999;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.logBox {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+ padding: 4.0625rem 1.5rem 4.0625rem 2.5rem;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow-y: auto;
|
|
|
+ // background: url(../../assets/img/border.png) no-repeat center center;
|
|
|
+ // background-size: 100% 100%;
|
|
|
+ .border {
|
|
|
+ position: absolute;
|
|
|
+ }
|
|
|
|
|
|
- .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_left_top {
|
|
|
+ width: 12.625rem;
|
|
|
+ height: 5.875rem;
|
|
|
+ background: url(../../../assets/img/border.png);
|
|
|
+ left: 1px;
|
|
|
+ top: 1px;
|
|
|
+ }
|
|
|
|
|
|
- .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_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_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_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;
|
|
|
+ }
|
|
|
|
|
|
- #topButton {
|
|
|
- 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/check1.png) no-repeat center center;
|
|
|
- background-size: 100% 100%;
|
|
|
- padding: 12px 50px 12px 35px;
|
|
|
- position: absolute;
|
|
|
- font-weight: bold;
|
|
|
- font-style: italic;
|
|
|
- color: #76899D;
|
|
|
- }
|
|
|
+ #topButton {
|
|
|
+ position: absolute;
|
|
|
+ top: 8px;
|
|
|
+ left: 8px;
|
|
|
+ z-index: 1;
|
|
|
|
|
|
- button:last-child {
|
|
|
- border: none;
|
|
|
- background: url(../../../assets/img/uncheck2.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/check1.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/uncheck2.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;
|
|
|
+}
|
|
|
|
|
|
- .logBox .el-table th,
|
|
|
- .el-table tr:hover {
|
|
|
- background: red;
|
|
|
- }
|
|
|
+.logBox .el-table th,
|
|
|
+.el-table tr:hover {
|
|
|
+ background: red;
|
|
|
+}
|
|
|
</style>
|