| | |
| | | siteName: String, |
| | | exceptionType: String, |
| | | beginTime: String, |
| | | endTime: String |
| | | endTime: String, |
| | | |
| | | }, |
| | | emits: ['submitExceptionData'], |
| | | data() { |
| | |
| | | requestExceptionData() { |
| | | // 不分页 |
| | | exceptionApi |
| | | .exceptiondata1( |
| | | this.siteName, |
| | | this.exceptionType, |
| | | this.beginTime, |
| | | this.endTime |
| | | .exceptiondata1({ |
| | | siteName: this.siteName, |
| | | exceptionType:this.exceptionType, |
| | | beginTime:this.beginTime, |
| | | endTime:this.endTime |
| | | } |
| | | ) |
| | | .then((result) => { |
| | | //将返回的结果传递给父组件 |
| | | this.$emit('submitExceptionData', result.data.data); |
| | | // this.$emit('subloading',false) |
| | | }); |
| | | } |
| | | } |
| | |
| | | .text { |
| | | color: #000000; |
| | | } |
| | | // .text:hover{ |
| | | // color: #2876aa; |
| | | // } |
| | | </style> |